lwc 2.24.0 → 2.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +28 -9
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +28 -9
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +26 -7
  5. package/dist/engine-dom/iife/es5/engine-dom.js +31 -10
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +29 -8
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +28 -9
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +26 -7
  11. package/dist/engine-dom/umd/es5/engine-dom.js +31 -10
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +29 -8
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +6 -6
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +6 -6
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
  20. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3 -3
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3 -3
  22. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
  23. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
  24. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3 -3
  25. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3 -3
  26. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  27. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  28. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  29. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  30. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  31. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  32. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  33. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  34. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  35. package/package.json +7 -7
@@ -299,9 +299,9 @@ function htmlPropertyToAttribute(propName) {
299
299
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
300
300
  */
301
301
  // Increment whenever the LWC template compiler changes
302
- const LWC_VERSION = "2.24.0";
302
+ const LWC_VERSION = "2.25.0";
303
303
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
304
- /** version: 2.24.0 */
304
+ /** version: 2.25.0 */
305
305
 
306
306
  /**
307
307
  * Copyright (C) 2018 salesforce.com, inc.
@@ -383,7 +383,7 @@ for (let i = 0, len = ElementPrototypeAriaPropertyNames.length; i < len; i += 1)
383
383
  patch$1(propName);
384
384
  }
385
385
  }
386
- /** version: 2.24.0 */
386
+ /** version: 2.25.0 */
387
387
 
388
388
  /**
389
389
  * Copyright (C) 2018 salesforce.com, inc.
@@ -462,7 +462,7 @@ function setFeatureFlagForTest(name, value) {
462
462
  setFeatureFlag(name, value);
463
463
  }
464
464
  }
465
- /** version: 2.24.0 */
465
+ /** version: 2.25.0 */
466
466
 
467
467
  /*
468
468
  * Copyright (c) 2018, salesforce.com, inc.
@@ -3587,6 +3587,14 @@ function getScopeTokenClass(owner) {
3587
3587
  const { cmpTemplate, context } = owner;
3588
3588
  return (context.hasScopedStyles && (cmpTemplate === null || cmpTemplate === void 0 ? void 0 : cmpTemplate.stylesheetToken)) || null;
3589
3589
  }
3590
+ /**
3591
+ * This function returns the host style token for a custom element if it
3592
+ * exists. Otherwise it returns null.
3593
+ */
3594
+ function getStylesheetTokenHost(vnode) {
3595
+ const { template: { stylesheetToken }, } = getComponentInternalDef(vnode.ctor);
3596
+ return !isUndefined$1(stylesheetToken) ? makeHostToken(stylesheetToken) : null;
3597
+ }
3590
3598
  function getNearestNativeShadowComponent(vm) {
3591
3599
  const owner = getNearestShadowComponent(vm);
3592
3600
  if (!isNull(owner) && owner.shadowMode === 1 /* ShadowMode.Synthetic */) {
@@ -3704,6 +3712,9 @@ function isVBaseElement(vnode) {
3704
3712
  function isSameVnode(vnode1, vnode2) {
3705
3713
  return vnode1.key === vnode2.key && vnode1.sel === vnode2.sel;
3706
3714
  }
3715
+ function isVCustomElement(vnode) {
3716
+ return vnode.type === 3 /* VNodeType.CustomElement */;
3717
+ }
3707
3718
 
3708
3719
  /*
3709
3720
  * Copyright (c) 2018, salesforce.com, inc.
@@ -6989,6 +7000,7 @@ function validateClassAttr(vnode, elm, renderer) {
6989
7000
  let { className, classMap } = data;
6990
7001
  const { getProperty, getClassList } = renderer;
6991
7002
  const scopedToken = getScopeTokenClass(owner);
7003
+ const stylesheetTokenHost = isVCustomElement(vnode) ? getStylesheetTokenHost(vnode) : null;
6992
7004
  // Classnames for scoped CSS are added directly to the DOM during rendering,
6993
7005
  // or to the VDOM on the server in the case of SSR. As such, these classnames
6994
7006
  // are never present in VDOM nodes in the browser.
@@ -6997,10 +7009,17 @@ function validateClassAttr(vnode, elm, renderer) {
6997
7009
  // are rendered during SSR. This needs to be accounted for when validating.
6998
7010
  if (scopedToken) {
6999
7011
  if (!isUndefined$1(className)) {
7000
- className = `${scopedToken} ${className}`;
7012
+ className = isNull(stylesheetTokenHost)
7013
+ ? `${scopedToken} ${className}`
7014
+ : `${scopedToken} ${className} ${stylesheetTokenHost}`;
7001
7015
  }
7002
7016
  else if (!isUndefined$1(classMap)) {
7003
- classMap = Object.assign(Object.assign({}, classMap), { [scopedToken]: true });
7017
+ classMap = Object.assign(Object.assign(Object.assign({}, classMap), { [scopedToken]: true }), (isNull(stylesheetTokenHost) ? {} : { [stylesheetTokenHost]: true }));
7018
+ }
7019
+ else {
7020
+ className = isNull(stylesheetTokenHost)
7021
+ ? `${scopedToken}`
7022
+ : `${scopedToken} ${stylesheetTokenHost}`;
7004
7023
  }
7005
7024
  }
7006
7025
  let nodesAreCompatible = true;
@@ -7242,7 +7261,7 @@ function getComponentConstructor(elm) {
7242
7261
  }
7243
7262
  return ctor;
7244
7263
  }
7245
- /* version: 2.24.0 */
7264
+ /* version: 2.25.0 */
7246
7265
 
7247
7266
  /*
7248
7267
  * Copyright (c) 2018, salesforce.com, inc.
@@ -7446,7 +7465,7 @@ function rendererFactory(baseRenderer) {
7446
7465
  function isNull(obj) {
7447
7466
  return obj === null;
7448
7467
  }
7449
- /** version: 2.24.0 */
7468
+ /** version: 2.25.0 */
7450
7469
 
7451
7470
  /*
7452
7471
  * Copyright (c) 2018, salesforce.com, inc.
@@ -8065,6 +8084,6 @@ defineProperty(LightningElement, 'CustomElementConstructor', {
8065
8084
  });
8066
8085
  freeze(LightningElement);
8067
8086
  seal(LightningElement.prototype);
8068
- /* version: 2.24.0 */
8087
+ /* version: 2.25.0 */
8069
8088
 
8070
8089
  export { LightningElement, profilerControl as __unstable__ProfilerControl, api$1 as api, deprecatedBuildCustomElementConstructor as buildCustomElementConstructor, createContextProvider, createElement, freezeTemplate, getComponentConstructor, getComponentDef, hydrateComponent, isComponentConstructor, isNodeShadowed as isNodeFromTemplate, parseFragment, parseSVGFragment, readonly, register, registerComponent, registerDecorators, registerTemplate, renderer, rendererFactory, sanitizeAttribute, setFeatureFlag, setFeatureFlagForTest, setHooks, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
@@ -302,9 +302,9 @@ var LWC = (function (exports) {
302
302
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
303
303
  */
304
304
  // Increment whenever the LWC template compiler changes
305
- const LWC_VERSION = "2.24.0";
305
+ const LWC_VERSION = "2.25.0";
306
306
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
307
- /** version: 2.24.0 */
307
+ /** version: 2.25.0 */
308
308
 
309
309
  /**
310
310
  * Copyright (C) 2018 salesforce.com, inc.
@@ -386,7 +386,7 @@ var LWC = (function (exports) {
386
386
  patch$1(propName);
387
387
  }
388
388
  }
389
- /** version: 2.24.0 */
389
+ /** version: 2.25.0 */
390
390
 
391
391
  /**
392
392
  * Copyright (C) 2018 salesforce.com, inc.
@@ -465,7 +465,7 @@ var LWC = (function (exports) {
465
465
  setFeatureFlag(name, value);
466
466
  }
467
467
  }
468
- /** version: 2.24.0 */
468
+ /** version: 2.25.0 */
469
469
 
470
470
  /*
471
471
  * Copyright (c) 2018, salesforce.com, inc.
@@ -3590,6 +3590,14 @@ var LWC = (function (exports) {
3590
3590
  const { cmpTemplate, context } = owner;
3591
3591
  return (context.hasScopedStyles && (cmpTemplate === null || cmpTemplate === void 0 ? void 0 : cmpTemplate.stylesheetToken)) || null;
3592
3592
  }
3593
+ /**
3594
+ * This function returns the host style token for a custom element if it
3595
+ * exists. Otherwise it returns null.
3596
+ */
3597
+ function getStylesheetTokenHost(vnode) {
3598
+ const { template: { stylesheetToken }, } = getComponentInternalDef(vnode.ctor);
3599
+ return !isUndefined$1(stylesheetToken) ? makeHostToken(stylesheetToken) : null;
3600
+ }
3593
3601
  function getNearestNativeShadowComponent(vm) {
3594
3602
  const owner = getNearestShadowComponent(vm);
3595
3603
  if (!isNull(owner) && owner.shadowMode === 1 /* ShadowMode.Synthetic */) {
@@ -3707,6 +3715,9 @@ var LWC = (function (exports) {
3707
3715
  function isSameVnode(vnode1, vnode2) {
3708
3716
  return vnode1.key === vnode2.key && vnode1.sel === vnode2.sel;
3709
3717
  }
3718
+ function isVCustomElement(vnode) {
3719
+ return vnode.type === 3 /* VNodeType.CustomElement */;
3720
+ }
3710
3721
 
3711
3722
  /*
3712
3723
  * Copyright (c) 2018, salesforce.com, inc.
@@ -6992,6 +7003,7 @@ var LWC = (function (exports) {
6992
7003
  let { className, classMap } = data;
6993
7004
  const { getProperty, getClassList } = renderer;
6994
7005
  const scopedToken = getScopeTokenClass(owner);
7006
+ const stylesheetTokenHost = isVCustomElement(vnode) ? getStylesheetTokenHost(vnode) : null;
6995
7007
  // Classnames for scoped CSS are added directly to the DOM during rendering,
6996
7008
  // or to the VDOM on the server in the case of SSR. As such, these classnames
6997
7009
  // are never present in VDOM nodes in the browser.
@@ -7000,10 +7012,17 @@ var LWC = (function (exports) {
7000
7012
  // are rendered during SSR. This needs to be accounted for when validating.
7001
7013
  if (scopedToken) {
7002
7014
  if (!isUndefined$1(className)) {
7003
- className = `${scopedToken} ${className}`;
7015
+ className = isNull(stylesheetTokenHost)
7016
+ ? `${scopedToken} ${className}`
7017
+ : `${scopedToken} ${className} ${stylesheetTokenHost}`;
7004
7018
  }
7005
7019
  else if (!isUndefined$1(classMap)) {
7006
- classMap = Object.assign(Object.assign({}, classMap), { [scopedToken]: true });
7020
+ classMap = Object.assign(Object.assign(Object.assign({}, classMap), { [scopedToken]: true }), (isNull(stylesheetTokenHost) ? {} : { [stylesheetTokenHost]: true }));
7021
+ }
7022
+ else {
7023
+ className = isNull(stylesheetTokenHost)
7024
+ ? `${scopedToken}`
7025
+ : `${scopedToken} ${stylesheetTokenHost}`;
7007
7026
  }
7008
7027
  }
7009
7028
  let nodesAreCompatible = true;
@@ -7245,7 +7264,7 @@ var LWC = (function (exports) {
7245
7264
  }
7246
7265
  return ctor;
7247
7266
  }
7248
- /* version: 2.24.0 */
7267
+ /* version: 2.25.0 */
7249
7268
 
7250
7269
  /*
7251
7270
  * Copyright (c) 2018, salesforce.com, inc.
@@ -7449,7 +7468,7 @@ var LWC = (function (exports) {
7449
7468
  function isNull(obj) {
7450
7469
  return obj === null;
7451
7470
  }
7452
- /** version: 2.24.0 */
7471
+ /** version: 2.25.0 */
7453
7472
 
7454
7473
  /*
7455
7474
  * Copyright (c) 2018, salesforce.com, inc.
@@ -8068,7 +8087,7 @@ var LWC = (function (exports) {
8068
8087
  });
8069
8088
  freeze(LightningElement);
8070
8089
  seal(LightningElement.prototype);
8071
- /* version: 2.24.0 */
8090
+ /* version: 2.25.0 */
8072
8091
 
8073
8092
  exports.LightningElement = LightningElement;
8074
8093
  exports.__unstable__ProfilerControl = profilerControl;
@@ -1 +1 @@
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:s,getOwnPropertyDescriptor:l,getOwnPropertyNames:c,getPrototypeOf:a,hasOwnProperty:u,isFrozen:d,keys:f,seal:h,setPrototypeOf:p}=Object,{isArray:m}=Array,{copyWithin:g,fill:w,filter:y,find:b,indexOf:v,join:E,map:C,pop:M,push:T,reduce:S,reverse:k,shift:N,slice:A,sort:L,splice:x,unshift:O,forEach:_}=Array.prototype,{fromCharCode:P}=String,{charCodeAt:$,replace:R,slice:D,toLowerCase:H}=String.prototype;function I(e){return void 0===e}function F(e){return null===e}function B(e){return!0===e}function V(e){return!1===e}function j(e){return"function"==typeof e}function W(e){return"object"==typeof e}function U(e){return"string"==typeof e}function G(){}const K={}.toString;function z(e){return e&&e.toString?m(e)?E.call(C.call(e,z),","):e.toString():"object"==typeof e?K.call(e):e+""}function Y(e,t){do{const n=l(e,t);if(!I(n))return n;e=a(e)}while(null!==e)}const q=["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:X,AriaPropNameToAttrNameMap:J}=(()=>{const e=r(null),t=r(null);return _.call(q,(n=>{const r=H.call(R.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})(),Q=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}(),Z="http://www.w3.org/2000/svg",ee=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"]]),te=new Map;function ne(e){const t=J[e];if(!I(t))return t;const n=ee.get(e);if(!I(n))return n;const r=te.get(e);if(!I(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=$.call(e,t);o+=n>=65&&n<=90?"-"+P(n+32):P(n)}return te.set(e,o),o}function re(e){return void 0===l(Element.prototype,e)}const oe=new WeakMap;function ie(e){let t=oe.get(e);return void 0===t&&(t={},oe.set(e,t)),t}function se(e,t){return{get(){const n=ie(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;ie(this)[e]=r,null===n?this.removeAttribute(t):this.setAttribute(t,n)},configurable:!0,enumerable:!0}}function le(e){const t=se(e,J[e]);Object.defineProperty(Element.prototype,e,t)}const ce=f(J);for(let e=0,t=ce.length;e<t;e+=1){const t=ce[e];re(t)&&le(t)}const ae={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HMR:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null,ENABLE_LIGHT_GET_ROOT_NODE_PATCH:null};Q.lwcRuntimeFlags||Object.defineProperty(Q,"lwcRuntimeFlags",{value:r(null)});const ue=Q.lwcRuntimeFlags;let de=[];const fe=h(r(null)),he=h([]);function pe(){const e=de;de=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function me(e){0===de.length&&Promise.resolve().then(pe),T.call(de,e)}const ge=/;(?![^(]*\))/g,we=/:(.+)/;function ye(e,t){const n={};for(const r of Object.keys(e))r!==t&&(n[r]=e[r]);return n}function be(e,t,n){const r=e.refVNodes;(!(t in r)||r[t].key<n.key)&&(r[t]=n)}const ve=new WeakMap;let Ee=null;function Ce(e,t){const n=ve.get(e);if(!I(n)){const e=n[t];if(!I(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function Me(e,t){if(null===Ee)return;const n=Ee,o=function(e){let t=ve.get(e);if(I(t)){const n=r(null);t=n,ve.set(e,n)}return t}(e);let i=o[t];if(I(i))i=[],o[t]=i;else if(i[0]===n)return;-1===v.call(i,n)&&n.link(i)}class Te{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=Ee;let n;Ee=this;try{e()}catch(e){n=Object(e)}finally{if(Ee=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=v.call(e[n],this);x.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){T.call(e,this),T.call(this.listeners,e)}}function Se(e,t){Ce(e.component,t)}function ke(e,t){Me(e.component,t)}function Ne(e){return new Te(e)}function Ae(e){return`<${H.call(e.tagName)}>`}function Le(e,t){if(!d(t)&&I(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!F(n);)T.call(t,Ae(n)),n=n.owner;return t.reverse().join("\n\t")}(e);i(t,"wcStack",{get:()=>n})}}function xe(e,t,n){let r=`[LWC ${e}]: ${t}`;I(n)||(r=`${r}\n${function(e){const t=[];let n="";for(;!F(e.owner);)T.call(t,n+Ae(e)),e=e.owner,n+="\t";return E.call(t,"\n")}(n)}`);try{throw new Error(r)}catch(t){console[e](t)}}function Oe(e,t){xe("error",e,t)}function _e(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Pe(e){return j(e)&&u.call(e,"__circular__")}const $e="undefined"!=typeof HTMLElement?HTMLElement:function(){},Re=$e.prototype;function De(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:De("offsetHeight")},offsetLeft:{readOnly:!0,error:De("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:De("offsetTop")},offsetWidth:{readOnly:!0,error:De("offsetWidth")},role:{attribute:"role"}});let He,Ie=null;function Fe(e,t){return e!==Ie||t!==He}function Be(e,t){Ie=null,He=void 0}function Ve(e,t){Ie=e,He=t}const je=r(null);function We(e,t,n){const{cmpFields:r}=e;n!==r[t]&&(r[t]=n,Se(e,t))}_.call(f(J),(e=>{const t=Y(Re,e);I(t)||(je[e]=t)})),_.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=Y(Re,e);I(t)||(je[e]=t)}));const{isArray:Ue}=Array,{prototype:Ge,getPrototypeOf:Ke,create:ze,defineProperty:Ye,isExtensible:qe,getOwnPropertyDescriptor:Xe,getOwnPropertyNames:Je,getOwnPropertySymbols:Qe,preventExtensions:Ze,hasOwnProperty:et}=Object,{push:tt,concat:nt}=Array.prototype;function rt(e){return void 0===e}function ot(e){return"function"==typeof e}const it=new WeakMap;function st(e,t){it.set(e,t)}const lt=e=>it.get(e)||e;class ct{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(et.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;rt(n)||(e.get=this.wrapGetter(n)),rt(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=Xe(n,t);if(!rt(r)){const n=this.wrapDescriptor(r);Ye(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;nt.call(Je(t),Qe(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;rt(n)||et.call(e,n)||Ye(e,n,ze(null)),Ze(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=rt(n)||et.call(t,n)?[]:[n];return tt.apply(r,Je(t)),tt.apply(r,Qe(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!qe(e)&&(!!qe(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return Ke(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=Xe(n,t);if(rt(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},Ye(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const at=new WeakMap,ut=new WeakMap,dt=new WeakMap,ft=new WeakMap;class ht extends ct{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=at.get(e);if(!rt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(lt(this)))};return at.set(e,r),dt.set(r,e),r}wrapSetter(e){const t=ut.get(e);if(!rt(t))return t;const n=function(t){e.call(lt(this),lt(t))};return ut.set(e,n),ft.set(n,e),n}unwrapDescriptor(e){if(et.call(e,"value"))e.value=lt(e.value);else{const{set:t,get:n}=e;rt(n)||(e.get=this.unwrapGetter(n)),rt(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=dt.get(e);if(!rt(t))return t;const n=this,r=function(){return lt(e.call(n.wrapValue(this)))};return at.set(r,e),dt.set(e,r),r}unwrapSetter(e){const t=ft.get(e);if(!rt(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return ut.set(r,e),ft.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&&Ue(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(qe(e)){const{originalTarget:t}=this;if(Ze(t),qe(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!et.call(r,t)||(Ye(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const pt=new WeakMap,mt=new WeakMap;class gt extends ct{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=pt.get(e);if(!rt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(lt(this)))};return pt.set(e,r),r}wrapSetter(e){const t=mt.get(e);if(!rt(t))return t;const n=function(e){};return mt.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 wt(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(Ue(e))return!0;const t=Ke(e);return t===Ge||null===t||null===Ke(t)}const yt=(e,t)=>{},bt=(e,t)=>{};function vt(e){return Ue(e)?[]:{}}const Et=Symbol.for("@@lockerLiveValue"),Ct=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=ot(t)?t:bt,this.valueObserved=ot(n)?n:yt,this.valueIsObservable=ot(r)?r:wt,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(rt(t)){const n=new ht(this,e);t=new Proxy(vt(e),n),st(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(rt(t)){const n=new gt(this,e);t=new Proxy(vt(e),n),st(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:Me,valueMutated:Ce,tagPropertyKey:Et});function Mt(e){return Ct.getReadOnlyProxy(e)}function Tt(e){return Ct.getProxy(e)}function St(e){e[Et]=void 0}function kt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!j(n))throw new TypeError;if(!j(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=Or(this);if(!cr(t))return ke(t,e),n.call(t.elm)},set(t){const n=Or(this);return We(n,e,t),r.call(n.elm,t)}}}const Nt=s(r(null)),At=new WeakMap,Lt=function(){if(F(lr))throw new ReferenceError("Illegal constructor");const e=lr,{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 St(this),xr(o,e),xr(n,e),1===e.renderMode?e.renderRoot=xt(e):e.renderRoot=n,this};function xt(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o},renderer:{attachShadow:i}}=e,s=i(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=s,xr(s,e),s}Lt.prototype={constructor:Lt,dispatchEvent(e){const t=Or(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=Or(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,gr(r,t),n)},removeEventListener(e,t,n){const r=Or(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,gr(r,t),n)},hasAttribute(e){const t=Or(this),{elm:n,renderer:{getAttribute:r}}=t;return!F(r(n,e))},hasAttributeNS(e,t){const n=Or(this),{elm:r,renderer:{getAttribute:o}}=n;return!F(o(r,t,e))},removeAttribute(e){const t=Or(this),{elm:n,renderer:{removeAttribute:r}}=t;Ve(n,e),r(n,e),Be()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=Or(this);Ve(n,t),r(n,t,e),Be()},getAttribute(e){const t=Or(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=Or(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=Or(this),{elm:r,renderer:{setAttribute:o}}=n;Ve(r,e),o(r,e,t),Be()},setAttributeNS(e,t,n){const r=Or(this),{elm:o,renderer:{setAttribute:i}}=r;Ve(o,t),i(o,t,n,e),Be()},getBoundingClientRect(){const e=Or(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=Or(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=Or(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return Or(this).shadowRoot},get refs(){const e=Or(this);if(Zn)return;const{refVNodes:t,hasRefVNodes:n,cmpTemplate:o}=e;if(!n)return;if(F(t))return Nt;let i=At.get(t);if(I(i)){i=r(null);for(const e of f(t))i[e]=t[e].elm;s(i),At.set(t,i)}return i},set refs(e){i(this,"refs",{configurable:!0,enumerable:!0,writable:!0,value:e})},get shadowRoot(){return null},get children(){const e=Or(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=Or(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=Or(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=Or(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=Or(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=Or(this);return e.renderer.getLastElementChild(e.elm)},render(){return Or(this).def.template},toString(){return`[object ${Or(this).def.name}]`}};const Ot=r(null),_t=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of _t)Ot[e]={value(t){const n=Or(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};o(Lt.prototype,Ot);const Pt=r(null);for(const e in je)Pt[e]=kt(e,je[e]);function $t(e){return{get(){const t=Or(this);return ke(t,e),t.cmpFields[e]},set(t){We(Or(this),e,t)},enumerable:!0,configurable:!0}}o(Lt.prototype,Pt),i(Lt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class Rt extends Te{constructor(e,t){super((()=>{V(this.debouncing)&&(this.debouncing=!0,me((()=>{if(B(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,B(e.isDirty)&&V(r)&&i>0&&Sr(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function Dt(e){return{get(){const t=Or(this);if(!cr(t))return ke(t,e),t.cmpProps[e]},set(t){const n=Or(this);n.cmpProps[e]=t,Se(n,e)},enumerable:!0,configurable:!0}}function Ht(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!j(n))throw new Error;return{get(){return n.call(this)},set(t){const n=Or(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];I(o)&&(o=n.oar[e]=function(e,t){return new Rt(e,t)}(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function It(e){return{get(){const t=Or(this);return ke(t,e),t.cmpFields[e]},set(t){const n=Or(this),r=Tt(t);We(n,e,r)},enumerable:!0,configurable:!0}}function Ft(e){return{get(){const t=Or(this);return ke(t,e),t.cmpFields[e]},set(t){We(Or(this),e,t)},enumerable:!0,configurable:!0}}const Bt=new Map;const Vt={apiMethods:fe,apiFields:fe,apiFieldsConfig:fe,wiredMethods:fe,wiredFields:fe,observedFields:fe};const jt=new Set;function Wt(){return[]}jt.add(Wt);const Ut=r(null),Gt=r(null);function Kt(e){let t=Ut[e];return I(t)&&(t=Ut[e]=function(){const t=Or(this),{getHook:n}=t;return n(t.component,e)}),t}function zt(e){let t=Gt[e];return I(t)&&(t=Gt[e]=function(t){const n=Or(this),{setHook:r}=n;t=Mt(t),r(n.component,e,t)}),t}function Yt(e){return function(){const t=Or(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,A.call(arguments))}}function qt(e,t){return function(n,r,o){if(r===o)return;const i=e[n];I(i)?I(t)||t.apply(this,arguments):Fe(this,n)&&(this[i]=o)}}function Xt(e,t,n){let s;j(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},p(s,e),p(s.prototype,e.prototype),i(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=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];l[ne(n)]=n,u[n]={get:Kt(n),set:zt(n),enumerable:!0,configurable:!0}}for(let e=0,t=n.length;e<t;e+=1){const t=n[e];u[t]={value:Yt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:qt(l,c)},i(s,"observedAttributes",{get:()=>[...a,...f(l)]}),o(s.prototype,u),s}const Jt=Xt($e,c(je),[]);s(Jt),h(Jt.prototype);const Qt=new WeakMap;function Zt(e){const{shadowSupportMode:t,renderMode:i}=e,s=function(e){const t=Bt.get(e);return I(t)?Vt:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:d,wiredMethods:h,observedFields:p}=s,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}=m;const E=function(e){let t=a(e);if(F(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(Pe(t)){const e=_e(t);t=e===t?Lt:e}return t}(e),C=E!==Lt?tn(E):nn,M=Xt(C.bridge,f(l),f(u)),T=n(r(null),C.props,l),S=n(r(null),C.propsConfig,c),k=n(r(null),C.methods,u),N=n(r(null),C.wire,d,h);g=g||C.connectedCallback,w=w||C.disconnectedCallback,y=y||C.renderedCallback,b=b||C.errorCallback,v=v||C.render;let A=C.shadowSupportMode;I(t)||(A=t);let L=C.renderMode;I(i)||(L="light"===i?0:1);const x=function(e){return dr.get(e)}(e)||C.template,O=e.name||C.name;o(m,p);return{ctor:e,name:O,wire:N,props:T,propsConfig:S,methods:k,bridge:M,template:x,renderMode:L,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function en(e){if(!j(e))return!1;if(e.prototype instanceof Lt)return!0;let t=e;do{if(Pe(t)){const e=_e(t);if(e===t)return!0;t=e}if(t===Lt)return!0}while(!F(t)&&(t=a(t)));return!1}function tn(e){let t=Qt.get(e);if(I(t)){if(Pe(e)){return t=tn(_e(e)),Qt.set(e,t),t}if(!en(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=Zt(e),Qt.set(e,t)}return t}const nn={ctor:Lt,name:Lt.name,props:Pt,propsConfig:fe,methods:fe,renderMode:1,shadowSupportMode:"reset",wire:fe,bridge:Jt,template:Wt,render:Lt.prototype.render};function rn(e){return`${e}-host`}function on(e){return Gn.h("style",{key:"style",attrs:{type:"text/css"}},[Gn.t(e)])}function sn(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(m(s))T.apply(r,sn(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let c;1===n.renderMode?c=0===n.shadowMode:(I(o)&&(o=cn(n)),c=F(o)||0===o.shadowMode),T.call(r,s(i,l,c))}}return r}function ln(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return I(n)||0===n.length||(o=sn(n,r,e)),o}function cn(e){let t=e;for(;!F(t);){if(1===t.renderMode)return t;t=t.owner}return t}function an(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}function un(e,t){const{renderMode:n,shadowMode:r,renderer:{insertStylesheet:o}}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)o(t[e]);else{if(e.hydrated)return C.call(t,on);{const n=function(e){const t=cn(e);return F(t)||1!==t.shadowMode?t:null}(e),r=F(n)?void 0:n.shadowRoot;for(let e=0;e<t.length;e++)o(t[e],r)}}return null}function dn(e){return!I(_r(e))}function fn(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return I(i)?(i=class extends r{constructor(e){super(),j(e)&&e(this)}},ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&(i.prototype.connectedCallback=function(){dn(this)&&kr(this)},i.prototype.disconnectedCallback=function(){dn(this)&&Nr(this)}),o(e,i),i):i}function hn(e){const{type:t}=e;return 2===t||3===t}function pn(e,t){return e.key===t.key&&e.sel===t.sel}function mn(e,t){return"input"===e&&("value"===t||"checked"===t)}function gn(e,t,r){let{props:o}=t.data;const{spread:i}=t.data;if(I(o)&&I(i))return;let s;if(!F(e)){s=e.data.props;const t=e.data.spread;if(s===o&&t===i)return;I(s)&&(s=fe),I(t)||(s=n({},s,t))}I(i)||(o=n({},o,i));const l=F(e),{elm:c,sel:a}=t,{getProperty:u,setProperty:d}=r;for(const e in o){const t=o[e];!l&&t===(mn(a,e)?u(c,e):s[e])&&e in s||d(c,e,t)}}const wn=r(null);function yn(e){if(null==e)return fe;e=U(e)?e:e+"";let t=wn[e];if(t)return t;t=r(null);let n,o=0;const i=e.length;for(n=0;n<i;n++)32===$.call(e,n)&&(n>o&&(t[D.call(e,o,n)]=!0),o=n+1);return n>o&&(t[D.call(e,o,n)]=!0),wn[e]=t,t}function bn(e,t){const{elm:n,data:{on:r}}=e;if(I(r))return;const{addEventListener:o}=t;for(const e in r){o(n,e,r[e])}}function vn(e,t,n,r){var o;o=t,Rn.has(o)?Hn(e,t,n,r):In(e,t,n,r)}function En(e,t,n,r){var o,i;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&Ln(t,n)}(e,t,r);break;case 4:t.elm=e.elm;break;case 5:!function(e,t,n,r){const{children:o,stable:i}=t;i?In(e.children,o,n,r):Hn(e.children,o,n,r);t.elm=o[o.length-1].elm}(e,t,n,r);break;case 2:!function(e,t,n){const r=t.elm=e.elm;_n(e,t,n),vn(e.children,t.children,r,n)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:r);break;case 3:!function(e,t,n,r){if(e.ctor!==t.ctor){const o=r.nextSibling(e.elm);Sn(e,n,r,!0),Mn(t,n,o,r)}else{const n=t.elm=e.elm,o=t.vm=e.vm;_n(e,t,r),I(o)||$n(t,o),vn(e.children,t.children,n,r),I(o)||Sr(o)}}(e,t,n,null!==(i=t.data.renderer)&&void 0!==i?i:r)}}function Cn(e,t,n,r){var o,i;switch(e.type){case 0:!function(e,t,n,r){const{owner:o}=e,{createText:i}=r,s=e.elm=i(e.text);An(s,o,r),xn(s,t,n,r)}(e,t,r,n);break;case 1:!function(e,t,n,r){const{owner:o}=e,{createComment:i}=r,s=e.elm=i(e.text);An(s,o,r),xn(s,t,n,r)}(e,t,r,n);break;case 4:!function(e,t,n,r){const{owner:o}=e,{cloneNode:i,isSyntheticShadowDefined:s}=r,l=e.elm=i(e.fragment,!0);An(l,o,r);const{renderMode:c,shadowMode:a}=o;s&&(1!==a&&0!==c||(l.$shadowStaticNode$=!0));xn(l,t,n,r)}(e,t,r,n);break;case 5:!function(e,t,n,r){const{children:o}=e;Tn(o,t,r,n),e.elm=o[o.length-1].elm}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,c=B(s)?Z:void 0,a=e.elm=l(o,c);An(a,i,r),Pn(a,i,r),function(e,t){var n;const{owner:r,data:{context:o}}=t;1===r.shadowMode&&"manual"===(null===(n=null==o?void 0:o.lwc)||void 0===n?void 0:n.dom)&&(e.$domManual$=!0)}(a,e),_n(null,e,r),xn(a,t,n,r),Tn(e.children,a,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:Mn(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function Mn(e,t,n,r){const{sel:o,owner:i}=e,s=fn(o,r);let l;const c=new s((t=>{l=function(e,t,n){let r=_r(e);if(!I(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;return r=Lr(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(e.elm=c,e.vm=l,An(c,i,r),Pn(c,i,r),l)$n(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");_n(null,e,r),xn(c,t,n,r),l&&(ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE||Hr(l)),Tn(e.children,c,r,null),l&&function(e){Pr(e)}(l)}function Tn(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];Nn(i)&&Cn(i,t,n,r)}}function Sn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&(5===o?kn(e.children,t,n,r):On(i,t,n)),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;kn(e.children,i,n,t);break}case 3:{const{vm:t}=e;I(t)||function(e){Ar(e)}(t)}}}function kn(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];Nn(i)&&Sn(i,t,n,r)}}function Nn(e){return null!=e}function An(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function Ln(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function xn(e,t,n,r){r.insert(e,t,n)}function On(e,t,n){n.remove(e,t)}function _n(e,t,n){F(e)&&(bn(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(I(r))return;const{getClassList:o}=t,i=o(n);for(const e in r)i.add(e)}(t,n),function(e,t){const{elm:n,data:{styleDecls:r}}=e;if(I(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=F(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),c=yn(o),a=yn(i);let u;for(u in a)I(c[u])&&l.remove(u);for(u in c)I(a[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((F(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;U(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(I(r))return;const o=F(e)?fe:e.data.attrs;if(o===r)return;const{elm:i}=t,{setAttribute:s,removeAttribute:l}=n;for(const e in r){const t=r[e];o[e]!==t&&(Ve(i,e),58===$.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===$.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):F(t)||I(t)?l(i,e):s(i,e,t),Be())}}(e,t,n),gn(e,t,n)}function Pn(e,t,n){const r=an(t);if(!F(r)){const{getClassList:t}=n;t(e).add(r)}const{stylesheetToken:o}=t.context;1!==t.shadowMode||I(o)||(e.$shadowToken$=o)}function $n(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(F(r))continue;let o="";hn(r)&&(o=(null===(n=r.data.attrs)||void 0===n?void 0:n.slot)||"");const s=i[o]=i[o]||[];T.call(s,r)}if(V(e.isDirty)){const t=f(o);if(t.length!==f(i).length)return void pr(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(I(i[r])||o[r].length!==i[r].length)return void pr(e);const s=o[r],l=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(s[t]!==l[t])return void pr(e)}}}(t,n),e.aChildren=n,e.children=he)}const Rn=new WeakMap;function Dn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(Nn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}function Hn(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],c=e[s];const a=t.length-1;let u,d,f,h,p=a,m=t[0],g=t[p],w=!1;for(;o<=s&&i<=p;)Nn(l)?Nn(c)?Nn(m)?Nn(g)?pn(l,m)?(En(l,m,n,r),l=e[++o],m=t[++i]):pn(c,g)?(En(c,g,n,r),c=e[--s],g=t[--p]):pn(l,g)?(En(l,g,n,r),xn(l.elm,n,r.nextSibling(c.elm),r),l=e[++o],g=t[--p]):pn(c,m)?(En(c,m,n,r),xn(m.elm,n,l.elm,r),c=e[--s],m=t[++i]):(void 0===u&&(u=Dn(e,o,s)),d=u[m.key],I(d)?(Cn(m,n,r,l.elm),m=t[++i]):(f=e[d],Nn(f)&&(f.sel!==m.sel?Cn(m,n,r,l.elm):(En(f,m,n,r),w||(w=!0,e=[...e]),e[d]=void 0,xn(f.elm,n,l.elm,r))),m=t[++i])):g=t[--p]:m=t[++i]:c=e[--s]:l=e[++o];if(o<=s||i<=p)if(o>s){let e,o=p;do{e=t[++o]}while(!Nn(e)&&o<a);h=Nn(e)?e.elm:null,Tn(t,n,r,h,i,p+1)}else kn(e,n,r,!0,o,s+1)}function In(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void Tn(t,n,r,null);if(0===i)return void kn(e,n,r,!0);let s=null;for(let o=i-1;o>=0;o-=1){const i=e[o],l=t[o];l!==i&&(Nn(i)?Nn(l)?(En(i,l,n,r),s=l.elm):Sn(i,n,r,!0):Nn(l)&&(Cn(l,n,r,s),s=l.elm))}}const Fn=Symbol.iterator;function Bn(e,t,n=he){const r=tr(),{key:o,ref:i}=t,s={type:2,sel:e,data:t,children:n,elm:void 0,key:o,owner:r};return I(i)||be(r,i,s),s}function Vn(e,t,n,r=he){const o=tr(),{key:i,ref:s}=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){T.call(tr().velements,e)}(l),I(s)||be(o,s,l),l}function jn(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:tr()}}function Wn(e){var t;return t=e,Rn.set(t,1),e}let Un=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const Gn=s({s:function(e,t,n,r){I(r)||I(r[e])||0===r[e].length||(n=r[e]);const o=tr(),{renderMode:i,shadowMode:s}=o;return 0===i?(Wn(n),n):(1===s&&Wn(n),Bn("slot",t,n))},h:Bn,c:Vn,i:function(e,t){const n=[];if(Wn(n),I(e)||null===e)return n;const r=e[Fn]();let o=r.next(),i=0,{value:s,done:l}=o;for(;!1===l;){o=r.next(),l=o.done;const e=t(s,i,0===i,!0===l);m(e)?T.apply(n,e):T.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];Wn(n);for(let r=0;r<t;r+=1){const t=e[r];m(t)?T.apply(n,t):T.call(n,t)}return n},t:jn,d:function(e){return null==e?"":String(e)},b:function(e){const t=tr();if(F(t))throw new Error;const n=t;return function(t){ur(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:"c",owner:tr()}},dc:function(e,t,n,r=he){if(null==t)return null;if(!en(t))throw new Error(`Invalid LWC Constructor ${z(t)} for custom element <${e}>.`);return Vn(e,t,n,r)},fr:function(e,t,n){return{type:5,sel:void 0,key:e,elm:void 0,children:[jn(""),...t,jn("")],stable:n,owner:tr()}},ti:function(e){return e>0&&!(B(e)||V(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:tr()}},gid:function(e){const t=tr();if(I(e)||""===e)return e;if(F(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?R.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=tr();if(I(e)||""===e)return e;if(F(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return Un(e)}});let Kn=!1,zn=G;const Yn={enableProfiler(){Kn=!0},disableProfiler(){Kn=!1},attachDispatcher(e){zn=e,this.enableProfiler()},detachDispatcher(){const e=zn;return zn=G,this.disableProfiler(),e}};function qn(e,t){Kn&&zn(e,0,t.tagName,t.idx,t.renderMode,t.shadowMode)}function Xn(e,t){Kn&&zn(e,1,t.tagName,t.idx,t.renderMode,t.shadowMode)}function Jn(e,t){Kn&&zn(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 Qn(e,t){Kn&&zn(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 Zn=!1,er=null;function tr(){return er}function nr(e){er=e}function rr(e){return(t,...n)=>{const o=r(null);return function(){const{context:{hasScopedStyles:r,stylesheetToken:i},shadowMode:s,renderer:l}=tr(),c=!I(i),a=1===s;let u=0;if(c&&r&&(u|=1),c&&a&&(u|=2),!I(o[u]))return o[u];const d=r&&c?" "+i:"",f=r&&c?` class="${i}"`:"",h=c&&a?" "+i:"";let p="";for(let e=0,r=n.length;e<r;e++)switch(n[e]){case 0:p+=t[e]+d;break;case 1:p+=t[e]+f;break;case 2:p+=t[e]+h;break;case 3:p+=t[e]+f+h}return p+=t[t.length-1],o[u]=e(p,l),o[u]}}}const or=rr(((e,t)=>{const{createFragment:n}=t;return n(e)})),ir=rr(((e,t)=>{const{createFragment:n,getFirstChild:r}=t;return r(n("<svg>"+e+"</svg>"))}));function sr(e,t){const n=Zn,o=er;let i=[];return jr(e,e.owner,(()=>{er=e,qn(1,e)}),(()=>{const{component:n,context:o,cmpSlots:s,cmpTemplate:l,tro:c}=e;c.observe((()=>{if(t!==l){if(F(l)||Vr(e),c=t,!jt.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: ${z(t)}.`);e.cmpTemplate=t,o.tplCache=r(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!I(t))for(let e=0;e<t.length;e++)if(B(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:c}}=e,{stylesheets:a,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let h,p,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:y}=r;I(g)||(w&&s(n).remove(rn(g)),y&&l(n,rn(g))),I(a)||0===a.length||(h=u),I(h)||(f&&(s(n).add(rn(h)),p=!0),d&&(c(n,rn(h),""),m=!0)),r.stylesheetToken=h,r.hasTokenInClass=p,r.hasTokenInAttribute=m}(e,t);const n=ln(e,t);o.styleVNodes=0===n.length?null:un(e,n)}var c;const a=Boolean(t.hasRefs);e.hasRefVNodes=a,e.refVNodes=a?r(null):null,e.velements=[],Zn=!0,i=t.call(void 0,Gn,n,s,o.tplCache);const{styleVNodes:u}=o;F(u)||O.apply(i,u)}))}),(()=>{Zn=n,er=o,Xn(1,e)})),i}let lr=null;function cr(e){return lr===e}function ar(e,t,n){const{component:r,callHook:o,owner:i}=e;jr(e,i,G,(()=>{o(r,t,n)}),G)}function ur(e,t,n,r){const{callHook:o,owner:i}=e;jr(e,i,G,(()=>{o(n,t,[r])}),G)}const dr=new Map;function fr(e){return Ne((()=>{const{isDirty:t}=e;V(t)&&(pr(e),function(e){if(B(e.isScheduled))return;e.isScheduled=!0,0===Rr.length&&me(Dr);T.call(Rr,e)}(e))}))}function hr(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=tr();let s,l=!1;return jr(e,o,(()=>{nr(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{nr(i)})),l?sr(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function pr(e){e.isDirty=!0}const mr=new WeakMap;function gr(e,t){if(!j(t))throw new TypeError;let n=mr.get(t);return I(n)&&(n=function(n){ur(e,t,void 0,n)},mr.set(t,n)),n}const wr=r(null),yr=["rendered","connected","disconnected"];function br(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 vr=0;const Er=new WeakMap;function Cr(e,t,n=[]){return t.apply(e,n)}function Mr(e,t,n){e[t]=n}function Tr(e,t){return e[t]}function Sr(e){Pr(e)}function kr(e){const t=Or(e);Jn(7,t),1===t.state&&Nr(e),Hr(t),Pr(t),Qn(7,t)}function Nr(e){Ar(Or(e))}function Ar(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){V(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=wr;t&&br(e,t);Ir(e)&&function(e){const{wiredDisconnecting:t}=e.context;jr(e,e,G,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),G)}(e);const{disconnectedCallback:n}=e.def;I(n)||(qn(5,e),ar(e,n),Xn(5,e))}(e),Fr(e),function(e){const{aChildren:t}=e;Br(t)}(e)}}function Lr(e,t,n,o){const{mode:i,owner:s,tagName:l,hydrated:c}=o,a=tn(t),u={elm:e,def:a,idx:vr++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,refVNodes:null,hasRefVNodes:!1,children:he,aChildren:he,velements:he,cmpProps:r(null),cmpFields:r(null),cmpSlots:r(null),oar:r(null),cmpTemplate:null,hydrated:Boolean(c),renderMode:a.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:fe,wiredConnecting:he,wiredDisconnecting:he},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:Cr,setHook:Mr,getHook:Tr,renderer:n};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ue.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!F(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=F(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,n),u.tro=fr(u),function(e,t){const n=lr;let r;qn(0,e),lr=e;try{const o=new t;if(lr.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(Xn(0,e),lr=n,!I(r))throw Le(e,r),r}}(u,a.ctor),Ir(u)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],s=Wr.get(i);if(!I(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=Gr(e,t,s),c=s.dynamic.length>0;T.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!c?i():Promise.resolve().then(i)})),T.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function xr(e,t){Er.set(e,t)}function Or(e){return Er.get(e)}function _r(e){return Er.get(e)}function Pr(e){if(B(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&jr(e,e,(()=>{qn(2,e)}),(()=>{vn(r,t,n,o)}),(()=>{Xn(2,e)}));1===e.state&&$r(e)}(e,hr(e))}}function $r(e){const{def:{renderedCallback:t}}=e,{rendered:n}=wr;n&&br(e,n),I(t)||(qn(4,e),ar(e,t),Xn(4,e))}let Rr=[];function Dr(){Jn(8);const e=Rr.sort(((e,t)=>e.idx-t.idx));Rr=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{Pr(r)}catch(r){throw t+1<n&&(0===Rr.length&&me(Dr),O.apply(Rr,A.call(e,t+1))),Qn(8),r}}Qn(8)}function Hr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=wr;n&&br(e,n),Ir(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;I(r)||(qn(3,e),ar(e,r),Xn(3,e))}function Ir(e){return c(e.def.wire).length>0}function Fr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!I(n)){const e=_r(n);I(e)||Ar(e)}}}function Br(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!F(n)&&!I(n.elm))switch(n.type){case 2:Br(n.children);break;case 3:Ar(Or(n.elm));break}}}function Vr(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];F(o)||I(o.elm)||r(o.elm,n)}e.children=he,Fr(e),e.velements=he}function jr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!I(i)){Le(e,i);const n=F(t)?void 0:function(e){let t=e;for(;!F(t);){if(!I(t.def.errorCallback))return t;t=t.owner}}(t);if(I(n))throw i;Vr(e),qn(6,e);ar(n,n.def.errorCallback,[i,i.wcStack]),Xn(6,e)}}}const Wr=new Map;class Ur extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),o(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function Gr(e,t,n){const{method:r,adapter:o,configCallback:s,dynamic:l}=n,c=I(r)?function(e,t){return n=>{We(e,t,n)}}(e,t):function(e,t){return n=>{jr(e,e.owner,G,(()=>{t.call(e.component,n)}),G)}}(e,r);let a,u;i(c,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),i(c,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),jr(e,e,G,(()=>{u=new o(c)}),G);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=Ne((()=>{!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,s,(t=>{jr(e,e,G,(()=>{u.update(t,a)}),G)}));return I(o.contextSchema)||function(e,t,n){const{adapter:r}=t,o=zr(r);if(I(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:c}}=e;T.call(s,(()=>{const e=new Ur(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){T.call(l,e)}});c(i,e)}))}(e,n,(t=>{a!==t&&(a=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const Kr=new Map;function zr(e){return Kr.get(e)}function Yr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};Wr.set(e,o)}function qr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};Wr.set(e,o)}let Xr=!1;function Jr(e){const t=hr(e);e.children=t;const{renderRoot:n,renderer:{getFirstChild:r}}=e;eo(r(n),t,n,e),$r(e)}function Qr(e,t,n){var r,o;let i;switch(t.type){case 0:i=function(e,t,n){var r;if(!ro(t,e,3,n))return to(e,t,n);const{setText:o}=n;return o(e,null!==(r=t.text)&&void 0!==r?r:null),t.elm=e,e}(e,t,n);break;case 1:i=function(e,t,n){var r;if(!ro(t,e,8,n))return to(e,t,n);const{setProperty:o}=n;return o(e,Zr,null!==(r=t.text)&&void 0!==r?r:null),t.elm=e,e}(e,t,n);break;case 4:i=function(e,t,n){if(!function(e,t,n,r){const{getProperty:o,getAttribute:i}=r;if(3===o(e,"nodeType"))return!!ro(n,t,3,r)&&o(e,Zr)===o(t,Zr);if(8===o(e,"nodeType"))return!!ro(n,t,8,r)&&o(e,Zr)===o(t,Zr);if(!ro(n,t,1,r))return!1;let s=!0;if(o(e,"tagName")!==o(t,"tagName"))return!1;return o(e,"getAttributeNames").call(e).forEach((r=>{i(e,r)!==i(t,r)&&(Oe(`Mismatch hydrating element <${o(e,"tagName").toLowerCase()}>: attribute "${r}" has different values, expected "${i(e,r)}" but found "${i(t,r)}"`,n.owner),s=!1)})),s}(t.fragment,e,t,n))return to(e,t,n);return t.elm=e,e}(e,t,n);break;case 5:i=function(e,t,n){const{children:r,owner:o}=t;return eo(e,r,n.getProperty(e,"parentNode"),o),t.elm=r[r.length-1].elm}(e,t,n);break;case 2:i=function(e,t,n){if(!ro(t,e,1,n)||!oo(t,e,n))return to(e,t,n);t.elm=e;const{owner:r}=t,{context:o}=t.data,i=Boolean(!I(o)&&!I(o.lwc)&&"manual"===o.lwc.dom);if(i){const{data:{props:r}}=t,{getProperty:o}=n;I(r)||I(r.innerHTML)||o(e,"innerHTML")===r.innerHTML&&(t.data=Object.assign(Object.assign({},t.data),{props:ye(r,"innerHTML")}))}if(no(t,n),!i){const{getFirstChild:o}=n;eo(o(e),t.children,e,r)}return e}(e,t,null!==(r=t.data.renderer)&&void 0!==r?r:n);break;case 3:i=function(e,t,n){if(!ro(t,e,1,n)||!oo(t,e,n))return to(e,t,n);const{sel:r,mode:o,ctor:i,owner:s}=t,l=Lr(e,i,n,{mode:o,owner:s,tagName:r,hydrated:!0});if(t.elm=e,t.vm=l,$n(t,l),no(t,n),Hr(l),0!==l.renderMode){const{getFirstChild:r}=n;eo(r(e),t.children,e,l)}return Jr(l),e}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}return n.nextSibling(i)}const Zr="nodeValue";function eo(e,t,n,r){let o=e,i=null;const{renderer:s}=r;for(let e=0;e<t.length;e++){const r=t[e];F(r)||(o?(o=Qr(o,r,s),i=r.elm):(Xr=!0,Cn(r,n,s,i),i=r.elm))}if(o){Xr=!0;const{nextSibling:e}=s;do{const t=o;o=e(o),On(t,n,s)}while(o)}}function to(e,t,n){Xr=!0;const{getProperty:r}=n,o=r(e,"parentNode");return Cn(t,o,n,e),On(e,o,n),t.elm}function no(e,t){bn(e,t),gn(null,e,t)}function ro(e,t,n,r){const{getProperty:o}=r;return o(t,"nodeType")===n}function oo(e,t,n){const{getProperty:r}=n;if(e.sel.toLowerCase()!==r(t,"tagName").toLowerCase())return!1;const o=function(e,t,n){const{data:{attrs:r={}}}=e;let o=!0;for(const[e,i]of Object.entries(r)){const{getAttribute:r}=n,s=r(t,e);String(i)!==s&&(o=!1)}return o}(e,t,n),i=function(e,t,n){const{data:r,owner:o}=e;let{className:i,classMap:s}=r;const{getProperty:l,getClassList:c}=n,a=an(o);a&&(I(i)?I(s)||(s=Object.assign(Object.assign({},s),{[a]:!0})):i=`${a} ${i}`);let u=!0;if(I(i)||String(i)===l(t,"className")){if(!I(s)){const e=c(t);let n="";for(const t in s)n+=" "+t,e.contains(t)||(u=!1);n.trim(),e.length>f(s).length&&(u=!1)}}else u=!1;return u}(e,t,n),s=function(e,t,n){const{data:{style:r,styleDecls:o}}=e,{getAttribute:i}=n,s=i(t,"style")||"";let l=!0;if(I(r)||r===s){if(!I(o)){const e=function(e){const t={},n=e.split(ge);for(const e of n)if(e){const[n,r]=e.split(we);void 0!==n&&void 0!==r&&(t[n.trim()]=r.trim())}return t}(s),t=[];for(let n=0,r=o.length;n<r;n++){const[r,i,s]=o[n];t.push(`${r}: ${i+(s?" important!":"")}`);const c=e[r];I(c)?l=!1:c.startsWith(i)?s&&!c.endsWith("!important")&&(l=!1):l=!1}f(e).length>o.length&&(l=!1),E.call(t,";")}}else l=!1;return l}(e,t,n);return o&&i&&s}let io=!1;const so=j(CSSStyleSheet.prototype.replaceSync)&&m(document.adoptedStyleSheets),lo=so&&l(document.adoptedStyleSheets,"length").writable,co=!I(document.documentMode),ao=new Map;function uo(e){const t=document.createElement("style");return t.type="text/css",t.textContent=e,t}function fo(e,t,n){const r=function(e,t){const{element:n,usedElement:r}=t;return r?co?uo(e):n.cloneNode(!0):(t.usedElement=!0,n)}(e,n);t.appendChild(r)}function ho(e,t){let n=ao.get(e);return I(n)&&(n={stylesheet:void 0,element:void 0,roots:void 0,global:!1,usedElement:!1},ao.set(e,n)),t&&I(n.stylesheet)?n.stylesheet=function(e){const t=new CSSStyleSheet;return t.replaceSync(e),t}(e):!t&&I(n.element)&&(n.element=uo(e)),n}function po(e,t){const n=ho(e,so);let{roots:r}=n;if(I(r))r=n.roots=new WeakSet;else if(r.has(t))return;r.add(t),so?function(e,t,n){const{adoptedStyleSheets:r}=t,{stylesheet:o}=n;lo?r.push(o):t.adoptedStyleSheets=[...r,o]}(0,t,n):fo(e,t,n)}function mo(e){const t=function(e){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)}});function n(e){return void 0===e}let r;if(e.getCustomElement=void 0,e.defineCustomElement=void 0,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}}())e.getCustomElement=customElements.get.bind(customElements),e.defineCustomElement=customElements.define.bind(customElements),r=HTMLElement;else{const t=Object.create(null),n=new WeakMap;e.defineCustomElement=function(e,r){if(e!==String.prototype.toLowerCase.call(e)||t[e])throw new TypeError("Invalid Registration");t[e]=r,n.set(r,e)},e.getCustomElement=function(e){return t[e]},r=function e(){if(!(this instanceof e))throw new TypeError("Invalid Invocation");const{constructor:t}=this,r=n.get(t);if(!r)throw new TypeError("Invalid Construction");const o=document.createElement(r);return Object.setPrototypeOf(o,t.prototype),o},r.prototype=HTMLElement.prototype}e.createFragment=void 0;if("function"==typeof HTMLTemplateElement)e.createFragment=function(e){const t=document.createElement("template");return t.innerHTML=e,t.content.firstChild};else{const t={caption:["table"],col:["colgroup","table"],colgroup:["table"],option:["select"],tbody:["table"],td:["tr","tbody","table"],th:["tr","tbody","table"],thead:["table"],tfoot:["table"],tr:["tbody","table"]},r=function(e){return(/<([a-z][^/\0>\x20\t\r\n\f]+)/i.exec(e)||["",""])[1].toLowerCase()};e.createFragment=function(e){const o=t[r(e)];if(!n(o))for(const t of o)e=`<${t}>${e}</${t}>`;const i=document.implementation.createHTMLDocument("");i.body.innerHTML=e;let s=i.body;if(!n(o))for(let e=0;e<o.length;e++)s=s.firstChild;return s.firstChild}}const o=r;return e.HTMLElementExported=o,e.addEventListener=function(e,t,n,r){e.addEventListener(t,n,r)},e.assertInstanceOfHTMLElement=function(e,n){t.invariant(e instanceof HTMLElement,n)},e.attachShadow=function(e,t){return null!==e.shadowRoot?e.shadowRoot:e.attachShadow(t)},e.cloneNode=function(e,t){return e.cloneNode(t)},e.createComment=function(e){return document.createComment(e)},e.createElement=function(e,t){return n(t)?document.createElement(e):document.createElementNS(t,e)},e.createText=function(e){return document.createTextNode(e)},e.dispatchEvent=function(e,t){return e.dispatchEvent(t)},e.getAttribute=function(e,t,r){return n(r)?e.getAttribute(t):e.getAttributeNS(r,t)},e.getBoundingClientRect=function(e){return e.getBoundingClientRect()},e.getChildNodes=function(e){return e.childNodes},e.getChildren=function(e){return e.children},e.getClassList=function(e){return e.classList},e.getElementsByClassName=function(e,t){return e.getElementsByClassName(t)},e.getElementsByTagName=function(e,t){return e.getElementsByTagName(t)},e.getFirstChild=function(e){return e.firstChild},e.getFirstElementChild=function(e){return e.firstElementChild},e.getLastChild=function(e){return e.lastChild},e.getLastElementChild=function(e){return e.lastElementChild},e.getProperty=function(e,t){return e[t]},e.insert=function(e,t,n){t.insertBefore(e,n)},e.isConnected=function(e){return e.isConnected},e.nextSibling=function(e){return e.nextSibling},e.querySelector=function(e,t){return e.querySelector(t)},e.querySelectorAll=function(e,t){return e.querySelectorAll(t)},e.remove=function(e,t){t.removeChild(e)},e.removeAttribute=function(e,t,r){n(r)?e.removeAttribute(t):e.removeAttributeNS(r,t)},e.removeEventListener=function(e,t,n,r){e.removeEventListener(t,n,r)},e.setAttribute=function(e,t,r,o){return n(o)?e.setAttribute(t,r):e.setAttributeNS(o,t,r)},e.setCSSStyleProperty=function(e,t,n,r){e.style.setProperty(t,n,r?"important":"")},e.setProperty=function(e,t,n){e[t]=n},e.setText=function(e,t){e.nodeValue=t},e}({});return Object.setPrototypeOf(t,e),t}const go=n(mo(null),{insertStylesheet:function(e,t){I(t)?function(e){const t=ho(e,!1);t.global||(t.global=!0,fo(e,document.head,t))}(e):po(e,t)},isNativeShadowDefined:Q.$isNativeShadowRootDefined$,isSyntheticShadowDefined:u.call(Element.prototype,"$shadowToken$")});function wo(e,t,n){const r=Lr(e,t,go,{mode:"open",owner:null,tagName:e.tagName.toLowerCase(),hydrated:!0});for(const[t,r]of Object.entries(n))e[t]=r;return r}function yo(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(!j(t))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if(!W(n)||F(n))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${n}.`);if(_r(e))console.warn('"hydrateComponent" expects an element that is not hydrated.',e);else try{!function(e){Xr=!1,Hr(e),Jr(e),Xr&&Oe("Hydration completed with errors.",e)}(wo(e,t,n))}catch(r){console.error("Recovering from error while hydrating: ",r),function(e,t){if(e.shadowRoot){const t=e.shadowRoot;for(;!F(t.firstChild);)t.removeChild(t.firstChild)}if("light"===t.renderMode)for(;!F(e.firstChild);)e.removeChild(e.firstChild)}(e,t),wo(e,t,n),kr(e)}}const bo=new WeakSet;function vo(e){const t=function(e){return tn(e).bridge}(e);return class extends t{constructor(){super(),this.isConnected?(yo(this,e,{}),bo.add(this)):Lr(this,e,go,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){bo.has(this)?bo.delete(this):kr(this)}disconnectedCallback(){Nr(this)}}}const Eo=Node,Co=new WeakMap,Mo=new WeakMap;function To(e,t){const n=t.get(e);return I(n)||n(e),e}if(!ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE){const{appendChild:e,insertBefore:t,removeChild:r,replaceChild:o}=Eo.prototype;n(Eo.prototype,{appendChild(t){return To(e.call(this,t),Co)},insertBefore(e,n){return To(t.call(this,e,n),Co)},removeChild(e){return To(r.call(this,e),Mo)},replaceChild(e,t){const n=o.call(this,e,t);return To(n,Mo),To(e,Co),n}})}const So=Node;const ko=new Map;return i(Lt,"CustomElementConstructor",{get(){return function(e){if(e===Lt)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let t=ko.get(e);return I(t)&&(t=vo(e),ko.set(e,t)),t}(this)}}),s(Lt),h(Lt.prototype),e.LightningElement=Lt,e.__unstable__ProfilerControl=Yn,e.api=function(){throw new Error},e.buildCustomElementConstructor=function(e){return e.CustomElementConstructor},e.createContextProvider=function(e){let t=zr(e);if(!I(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){Kr.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)||i(r)})),o(r),e.stopImmediatePropagation()}))}},e.createElement=function(e,t){if(!W(t)||F(t))throw new TypeError(`"createElement" function expects an object as second parameter but received "${z(t)}".`);const n=t.is;if(!j(n))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const r=fn(e,go);let o=!1;const i=new r((r=>{Lr(r,n,go,{tagName:e,mode:"closed"!==t.mode?"open":"closed",owner:null}),ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE||(Co.set(r,kr),Mo.set(r,Nr)),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.freezeTemplate=function(e){},e.getComponentConstructor=function(e){let t=null;if(!I(e)){const n=_r(e);I(n)||(t=n.def.ctor)}return t},e.getComponentDef=function(e){const t=tn(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:ne(e)};const c={};for(const e in s)c[e]=s[e].value;return{ctor:n,name:r,props:l,methods:c}},e.hydrateComponent=yo,e.isComponentConstructor=en,e.isNodeFromTemplate=function(e){if(V(e instanceof So))return!1;if(e instanceof ShadowRoot)return!1;const t=e.getRootNode();return!!(t instanceof ShadowRoot&&V(u.call(a(t),"synthetic")))||go.isSyntheticShadowDefined&&!I(e.$shadowResolver$)},e.parseFragment=or,e.parseSVGFragment=ir,e.readonly=function(e){return Mt(e)},e.register=function(e){for(let t=0;t<yr.length;++t){const n=yr[t];if(n in e){let t=wr[n];I(t)&&(wr[n]=t=[]),T.call(t,e[n])}}},e.registerComponent=function(e,{tmpl:t}){return j(e)&&dr.set(e,t),e},e.registerDecorators=function(e,t){const n=e.prototype,{publicProps:o,publicMethods:s,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(!I(o))for(const e in o){const t=o[e];if(g[e]=t.config,w=l(n,e),t.config>0){if(I(w))throw new Error;w=Ht(e,w)}else w=I(w)||I(w.get)?Dt(e):Ht(e,w);f[e]=w,i(n,e,w)}if(I(s)||_.call(s,(e=>{if(w=l(n,e),I(w))throw new Error;d[e]=w})),!I(c))for(const e in c){const{adapter:t,method:r,config:o,dynamic:s=[]}=c[e];if(w=l(n,e),1===r){if(I(w))throw new Error;h[e]=w,Yr(w,t,o,s)}else w=Ft(e),p[e]=w,qr(w,t,o,s),i(n,e,w)}if(!I(a))for(const e in a)w=l(n,e),w=It(e),i(n,e,w);if(!I(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=l(n,t);const r=!I(o)&&t in o,i=!I(a)&&t in a;r||i||(m[t]=$t(t))}return function(e,t){Bt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:h,wiredFields:p,observedFields:m}),e},e.registerTemplate=function(e){return jt.add(e),i(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return I(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=I(e)?void 0:e.shadowAttribute}}),e},e.renderer=go,e.rendererFactory=mo,e.sanitizeAttribute=function(e,t,n,r){return r},e.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(I(ae[e])){const n=f(ae).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ue[e];if(!I(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(ue,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},e.setFeatureFlagForTest=function(e,t){},e.setHooks=function(e){var n;t.isFalse(io,"Hooks are already overridden, only one definition is allowed."),io=!0,n=e.sanitizeHtmlContent,Un=n},e.swapComponent=function(e,t){if(!ue.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},e.swapStyle=function(e,t){if(!ue.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},e.swapTemplate=function(e,t){if(!ue.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},e.track=function(e){if(1===arguments.length)return Tt(e);throw new Error},e.unwrap=function(e){return Ct.unwrapProxy(e)},e.wire=function(e,t){throw new Error},Object.defineProperty(e,"__esModule",{value:!0}),e}({});
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:s,getOwnPropertyDescriptor:l,getOwnPropertyNames:c,getPrototypeOf:a,hasOwnProperty:u,isFrozen:d,keys:f,seal:h,setPrototypeOf:p}=Object,{isArray:m}=Array,{copyWithin:g,fill:w,filter:y,find:b,indexOf:v,join:E,map:C,pop:M,push:T,reduce:S,reverse:k,shift:N,slice:A,sort:L,splice:x,unshift:O,forEach:_}=Array.prototype,{fromCharCode:P}=String,{charCodeAt:$,replace:R,slice:D,toLowerCase:H}=String.prototype;function I(e){return void 0===e}function F(e){return null===e}function B(e){return!0===e}function V(e){return!1===e}function j(e){return"function"==typeof e}function W(e){return"object"==typeof e}function U(e){return"string"==typeof e}function G(){}const K={}.toString;function z(e){return e&&e.toString?m(e)?E.call(C.call(e,z),","):e.toString():"object"==typeof e?K.call(e):e+""}function Y(e,t){do{const n=l(e,t);if(!I(n))return n;e=a(e)}while(null!==e)}const q=["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:X,AriaPropNameToAttrNameMap:J}=(()=>{const e=r(null),t=r(null);return _.call(q,(n=>{const r=H.call(R.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})(),Q=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}(),Z="http://www.w3.org/2000/svg",ee=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"]]),te=new Map;function ne(e){const t=J[e];if(!I(t))return t;const n=ee.get(e);if(!I(n))return n;const r=te.get(e);if(!I(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=$.call(e,t);o+=n>=65&&n<=90?"-"+P(n+32):P(n)}return te.set(e,o),o}function re(e){return void 0===l(Element.prototype,e)}const oe=new WeakMap;function ie(e){let t=oe.get(e);return void 0===t&&(t={},oe.set(e,t)),t}function se(e,t){return{get(){const n=ie(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;ie(this)[e]=r,null===n?this.removeAttribute(t):this.setAttribute(t,n)},configurable:!0,enumerable:!0}}function le(e){const t=se(e,J[e]);Object.defineProperty(Element.prototype,e,t)}const ce=f(J);for(let e=0,t=ce.length;e<t;e+=1){const t=ce[e];re(t)&&le(t)}const ae={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HMR:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null,ENABLE_LIGHT_GET_ROOT_NODE_PATCH:null};Q.lwcRuntimeFlags||Object.defineProperty(Q,"lwcRuntimeFlags",{value:r(null)});const ue=Q.lwcRuntimeFlags;let de=[];const fe=h(r(null)),he=h([]);function pe(){const e=de;de=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function me(e){0===de.length&&Promise.resolve().then(pe),T.call(de,e)}const ge=/;(?![^(]*\))/g,we=/:(.+)/;function ye(e,t){const n={};for(const r of Object.keys(e))r!==t&&(n[r]=e[r]);return n}function be(e,t,n){const r=e.refVNodes;(!(t in r)||r[t].key<n.key)&&(r[t]=n)}const ve=new WeakMap;let Ee=null;function Ce(e,t){const n=ve.get(e);if(!I(n)){const e=n[t];if(!I(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function Me(e,t){if(null===Ee)return;const n=Ee,o=function(e){let t=ve.get(e);if(I(t)){const n=r(null);t=n,ve.set(e,n)}return t}(e);let i=o[t];if(I(i))i=[],o[t]=i;else if(i[0]===n)return;-1===v.call(i,n)&&n.link(i)}class Te{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=Ee;let n;Ee=this;try{e()}catch(e){n=Object(e)}finally{if(Ee=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=v.call(e[n],this);x.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){T.call(e,this),T.call(this.listeners,e)}}function Se(e,t){Ce(e.component,t)}function ke(e,t){Me(e.component,t)}function Ne(e){return new Te(e)}function Ae(e){return`<${H.call(e.tagName)}>`}function Le(e,t){if(!d(t)&&I(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!F(n);)T.call(t,Ae(n)),n=n.owner;return t.reverse().join("\n\t")}(e);i(t,"wcStack",{get:()=>n})}}function xe(e,t,n){let r=`[LWC ${e}]: ${t}`;I(n)||(r=`${r}\n${function(e){const t=[];let n="";for(;!F(e.owner);)T.call(t,n+Ae(e)),e=e.owner,n+="\t";return E.call(t,"\n")}(n)}`);try{throw new Error(r)}catch(t){console[e](t)}}function Oe(e,t){xe("error",e,t)}function _e(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Pe(e){return j(e)&&u.call(e,"__circular__")}const $e="undefined"!=typeof HTMLElement?HTMLElement:function(){},Re=$e.prototype;function De(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:De("offsetHeight")},offsetLeft:{readOnly:!0,error:De("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:De("offsetTop")},offsetWidth:{readOnly:!0,error:De("offsetWidth")},role:{attribute:"role"}});let He,Ie=null;function Fe(e,t){return e!==Ie||t!==He}function Be(e,t){Ie=null,He=void 0}function Ve(e,t){Ie=e,He=t}const je=r(null);function We(e,t,n){const{cmpFields:r}=e;n!==r[t]&&(r[t]=n,Se(e,t))}_.call(f(J),(e=>{const t=Y(Re,e);I(t)||(je[e]=t)})),_.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=Y(Re,e);I(t)||(je[e]=t)}));const{isArray:Ue}=Array,{prototype:Ge,getPrototypeOf:Ke,create:ze,defineProperty:Ye,isExtensible:qe,getOwnPropertyDescriptor:Xe,getOwnPropertyNames:Je,getOwnPropertySymbols:Qe,preventExtensions:Ze,hasOwnProperty:et}=Object,{push:tt,concat:nt}=Array.prototype;function rt(e){return void 0===e}function ot(e){return"function"==typeof e}const it=new WeakMap;function st(e,t){it.set(e,t)}const lt=e=>it.get(e)||e;class ct{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(et.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;rt(n)||(e.get=this.wrapGetter(n)),rt(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=Xe(n,t);if(!rt(r)){const n=this.wrapDescriptor(r);Ye(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;nt.call(Je(t),Qe(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;rt(n)||et.call(e,n)||Ye(e,n,ze(null)),Ze(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=rt(n)||et.call(t,n)?[]:[n];return tt.apply(r,Je(t)),tt.apply(r,Qe(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!qe(e)&&(!!qe(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return Ke(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=Xe(n,t);if(rt(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},Ye(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const at=new WeakMap,ut=new WeakMap,dt=new WeakMap,ft=new WeakMap;class ht extends ct{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=at.get(e);if(!rt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(lt(this)))};return at.set(e,r),dt.set(r,e),r}wrapSetter(e){const t=ut.get(e);if(!rt(t))return t;const n=function(t){e.call(lt(this),lt(t))};return ut.set(e,n),ft.set(n,e),n}unwrapDescriptor(e){if(et.call(e,"value"))e.value=lt(e.value);else{const{set:t,get:n}=e;rt(n)||(e.get=this.unwrapGetter(n)),rt(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=dt.get(e);if(!rt(t))return t;const n=this,r=function(){return lt(e.call(n.wrapValue(this)))};return at.set(r,e),dt.set(e,r),r}unwrapSetter(e){const t=ft.get(e);if(!rt(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return ut.set(r,e),ft.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&&Ue(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(qe(e)){const{originalTarget:t}=this;if(Ze(t),qe(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!et.call(r,t)||(Ye(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const pt=new WeakMap,mt=new WeakMap;class gt extends ct{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=pt.get(e);if(!rt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(lt(this)))};return pt.set(e,r),r}wrapSetter(e){const t=mt.get(e);if(!rt(t))return t;const n=function(e){};return mt.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 wt(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(Ue(e))return!0;const t=Ke(e);return t===Ge||null===t||null===Ke(t)}const yt=(e,t)=>{},bt=(e,t)=>{};function vt(e){return Ue(e)?[]:{}}const Et=Symbol.for("@@lockerLiveValue"),Ct=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=ot(t)?t:bt,this.valueObserved=ot(n)?n:yt,this.valueIsObservable=ot(r)?r:wt,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(rt(t)){const n=new ht(this,e);t=new Proxy(vt(e),n),st(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(rt(t)){const n=new gt(this,e);t=new Proxy(vt(e),n),st(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:Me,valueMutated:Ce,tagPropertyKey:Et});function Mt(e){return Ct.getReadOnlyProxy(e)}function Tt(e){return Ct.getProxy(e)}function St(e){e[Et]=void 0}function kt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!j(n))throw new TypeError;if(!j(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=Or(this);if(!cr(t))return ke(t,e),n.call(t.elm)},set(t){const n=Or(this);return We(n,e,t),r.call(n.elm,t)}}}const Nt=s(r(null)),At=new WeakMap,Lt=function(){if(F(lr))throw new ReferenceError("Illegal constructor");const e=lr,{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 St(this),xr(o,e),xr(n,e),1===e.renderMode?e.renderRoot=xt(e):e.renderRoot=n,this};function xt(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o},renderer:{attachShadow:i}}=e,s=i(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=s,xr(s,e),s}Lt.prototype={constructor:Lt,dispatchEvent(e){const t=Or(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=Or(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,gr(r,t),n)},removeEventListener(e,t,n){const r=Or(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,gr(r,t),n)},hasAttribute(e){const t=Or(this),{elm:n,renderer:{getAttribute:r}}=t;return!F(r(n,e))},hasAttributeNS(e,t){const n=Or(this),{elm:r,renderer:{getAttribute:o}}=n;return!F(o(r,t,e))},removeAttribute(e){const t=Or(this),{elm:n,renderer:{removeAttribute:r}}=t;Ve(n,e),r(n,e),Be()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=Or(this);Ve(n,t),r(n,t,e),Be()},getAttribute(e){const t=Or(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=Or(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=Or(this),{elm:r,renderer:{setAttribute:o}}=n;Ve(r,e),o(r,e,t),Be()},setAttributeNS(e,t,n){const r=Or(this),{elm:o,renderer:{setAttribute:i}}=r;Ve(o,t),i(o,t,n,e),Be()},getBoundingClientRect(){const e=Or(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=Or(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=Or(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return Or(this).shadowRoot},get refs(){const e=Or(this);if(Zn)return;const{refVNodes:t,hasRefVNodes:n,cmpTemplate:o}=e;if(!n)return;if(F(t))return Nt;let i=At.get(t);if(I(i)){i=r(null);for(const e of f(t))i[e]=t[e].elm;s(i),At.set(t,i)}return i},set refs(e){i(this,"refs",{configurable:!0,enumerable:!0,writable:!0,value:e})},get shadowRoot(){return null},get children(){const e=Or(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=Or(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=Or(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=Or(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=Or(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=Or(this);return e.renderer.getLastElementChild(e.elm)},render(){return Or(this).def.template},toString(){return`[object ${Or(this).def.name}]`}};const Ot=r(null),_t=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of _t)Ot[e]={value(t){const n=Or(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};o(Lt.prototype,Ot);const Pt=r(null);for(const e in je)Pt[e]=kt(e,je[e]);function $t(e){return{get(){const t=Or(this);return ke(t,e),t.cmpFields[e]},set(t){We(Or(this),e,t)},enumerable:!0,configurable:!0}}o(Lt.prototype,Pt),i(Lt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class Rt extends Te{constructor(e,t){super((()=>{V(this.debouncing)&&(this.debouncing=!0,me((()=>{if(B(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,B(e.isDirty)&&V(r)&&i>0&&Sr(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function Dt(e){return{get(){const t=Or(this);if(!cr(t))return ke(t,e),t.cmpProps[e]},set(t){const n=Or(this);n.cmpProps[e]=t,Se(n,e)},enumerable:!0,configurable:!0}}function Ht(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!j(n))throw new Error;return{get(){return n.call(this)},set(t){const n=Or(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];I(o)&&(o=n.oar[e]=function(e,t){return new Rt(e,t)}(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function It(e){return{get(){const t=Or(this);return ke(t,e),t.cmpFields[e]},set(t){const n=Or(this),r=Tt(t);We(n,e,r)},enumerable:!0,configurable:!0}}function Ft(e){return{get(){const t=Or(this);return ke(t,e),t.cmpFields[e]},set(t){We(Or(this),e,t)},enumerable:!0,configurable:!0}}const Bt=new Map;const Vt={apiMethods:fe,apiFields:fe,apiFieldsConfig:fe,wiredMethods:fe,wiredFields:fe,observedFields:fe};const jt=new Set;function Wt(){return[]}jt.add(Wt);const Ut=r(null),Gt=r(null);function Kt(e){let t=Ut[e];return I(t)&&(t=Ut[e]=function(){const t=Or(this),{getHook:n}=t;return n(t.component,e)}),t}function zt(e){let t=Gt[e];return I(t)&&(t=Gt[e]=function(t){const n=Or(this),{setHook:r}=n;t=Mt(t),r(n.component,e,t)}),t}function Yt(e){return function(){const t=Or(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,A.call(arguments))}}function qt(e,t){return function(n,r,o){if(r===o)return;const i=e[n];I(i)?I(t)||t.apply(this,arguments):Fe(this,n)&&(this[i]=o)}}function Xt(e,t,n){let s;j(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},p(s,e),p(s.prototype,e.prototype),i(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=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];l[ne(n)]=n,u[n]={get:Kt(n),set:zt(n),enumerable:!0,configurable:!0}}for(let e=0,t=n.length;e<t;e+=1){const t=n[e];u[t]={value:Yt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:qt(l,c)},i(s,"observedAttributes",{get:()=>[...a,...f(l)]}),o(s.prototype,u),s}const Jt=Xt($e,c(je),[]);s(Jt),h(Jt.prototype);const Qt=new WeakMap;function Zt(e){const{shadowSupportMode:t,renderMode:i}=e,s=function(e){const t=Bt.get(e);return I(t)?Vt:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:d,wiredMethods:h,observedFields:p}=s,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}=m;const E=function(e){let t=a(e);if(F(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(Pe(t)){const e=_e(t);t=e===t?Lt:e}return t}(e),C=E!==Lt?tn(E):nn,M=Xt(C.bridge,f(l),f(u)),T=n(r(null),C.props,l),S=n(r(null),C.propsConfig,c),k=n(r(null),C.methods,u),N=n(r(null),C.wire,d,h);g=g||C.connectedCallback,w=w||C.disconnectedCallback,y=y||C.renderedCallback,b=b||C.errorCallback,v=v||C.render;let A=C.shadowSupportMode;I(t)||(A=t);let L=C.renderMode;I(i)||(L="light"===i?0:1);const x=function(e){return dr.get(e)}(e)||C.template,O=e.name||C.name;o(m,p);return{ctor:e,name:O,wire:N,props:T,propsConfig:S,methods:k,bridge:M,template:x,renderMode:L,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function en(e){if(!j(e))return!1;if(e.prototype instanceof Lt)return!0;let t=e;do{if(Pe(t)){const e=_e(t);if(e===t)return!0;t=e}if(t===Lt)return!0}while(!F(t)&&(t=a(t)));return!1}function tn(e){let t=Qt.get(e);if(I(t)){if(Pe(e)){return t=tn(_e(e)),Qt.set(e,t),t}if(!en(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=Zt(e),Qt.set(e,t)}return t}const nn={ctor:Lt,name:Lt.name,props:Pt,propsConfig:fe,methods:fe,renderMode:1,shadowSupportMode:"reset",wire:fe,bridge:Jt,template:Wt,render:Lt.prototype.render};function rn(e){return`${e}-host`}function on(e){return Gn.h("style",{key:"style",attrs:{type:"text/css"}},[Gn.t(e)])}function sn(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(m(s))T.apply(r,sn(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let c;1===n.renderMode?c=0===n.shadowMode:(I(o)&&(o=cn(n)),c=F(o)||0===o.shadowMode),T.call(r,s(i,l,c))}}return r}function ln(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return I(n)||0===n.length||(o=sn(n,r,e)),o}function cn(e){let t=e;for(;!F(t);){if(1===t.renderMode)return t;t=t.owner}return t}function an(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}function un(e,t){const{renderMode:n,shadowMode:r,renderer:{insertStylesheet:o}}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)o(t[e]);else{if(e.hydrated)return C.call(t,on);{const n=function(e){const t=cn(e);return F(t)||1!==t.shadowMode?t:null}(e),r=F(n)?void 0:n.shadowRoot;for(let e=0;e<t.length;e++)o(t[e],r)}}return null}function dn(e){return!I(_r(e))}function fn(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return I(i)?(i=class extends r{constructor(e){super(),j(e)&&e(this)}},ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&(i.prototype.connectedCallback=function(){dn(this)&&kr(this)},i.prototype.disconnectedCallback=function(){dn(this)&&Nr(this)}),o(e,i),i):i}function hn(e){const{type:t}=e;return 2===t||3===t}function pn(e,t){return e.key===t.key&&e.sel===t.sel}function mn(e,t){return"input"===e&&("value"===t||"checked"===t)}function gn(e,t,r){let{props:o}=t.data;const{spread:i}=t.data;if(I(o)&&I(i))return;let s;if(!F(e)){s=e.data.props;const t=e.data.spread;if(s===o&&t===i)return;I(s)&&(s=fe),I(t)||(s=n({},s,t))}I(i)||(o=n({},o,i));const l=F(e),{elm:c,sel:a}=t,{getProperty:u,setProperty:d}=r;for(const e in o){const t=o[e];!l&&t===(mn(a,e)?u(c,e):s[e])&&e in s||d(c,e,t)}}const wn=r(null);function yn(e){if(null==e)return fe;e=U(e)?e:e+"";let t=wn[e];if(t)return t;t=r(null);let n,o=0;const i=e.length;for(n=0;n<i;n++)32===$.call(e,n)&&(n>o&&(t[D.call(e,o,n)]=!0),o=n+1);return n>o&&(t[D.call(e,o,n)]=!0),wn[e]=t,t}function bn(e,t){const{elm:n,data:{on:r}}=e;if(I(r))return;const{addEventListener:o}=t;for(const e in r){o(n,e,r[e])}}function vn(e,t,n,r){var o;o=t,Rn.has(o)?Hn(e,t,n,r):In(e,t,n,r)}function En(e,t,n,r){var o,i;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&Ln(t,n)}(e,t,r);break;case 4:t.elm=e.elm;break;case 5:!function(e,t,n,r){const{children:o,stable:i}=t;i?In(e.children,o,n,r):Hn(e.children,o,n,r);t.elm=o[o.length-1].elm}(e,t,n,r);break;case 2:!function(e,t,n){const r=t.elm=e.elm;_n(e,t,n),vn(e.children,t.children,r,n)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:r);break;case 3:!function(e,t,n,r){if(e.ctor!==t.ctor){const o=r.nextSibling(e.elm);Sn(e,n,r,!0),Mn(t,n,o,r)}else{const n=t.elm=e.elm,o=t.vm=e.vm;_n(e,t,r),I(o)||$n(t,o),vn(e.children,t.children,n,r),I(o)||Sr(o)}}(e,t,n,null!==(i=t.data.renderer)&&void 0!==i?i:r)}}function Cn(e,t,n,r){var o,i;switch(e.type){case 0:!function(e,t,n,r){const{owner:o}=e,{createText:i}=r,s=e.elm=i(e.text);An(s,o,r),xn(s,t,n,r)}(e,t,r,n);break;case 1:!function(e,t,n,r){const{owner:o}=e,{createComment:i}=r,s=e.elm=i(e.text);An(s,o,r),xn(s,t,n,r)}(e,t,r,n);break;case 4:!function(e,t,n,r){const{owner:o}=e,{cloneNode:i,isSyntheticShadowDefined:s}=r,l=e.elm=i(e.fragment,!0);An(l,o,r);const{renderMode:c,shadowMode:a}=o;s&&(1!==a&&0!==c||(l.$shadowStaticNode$=!0));xn(l,t,n,r)}(e,t,r,n);break;case 5:!function(e,t,n,r){const{children:o}=e;Tn(o,t,r,n),e.elm=o[o.length-1].elm}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,c=B(s)?Z:void 0,a=e.elm=l(o,c);An(a,i,r),Pn(a,i,r),function(e,t){var n;const{owner:r,data:{context:o}}=t;1===r.shadowMode&&"manual"===(null===(n=null==o?void 0:o.lwc)||void 0===n?void 0:n.dom)&&(e.$domManual$=!0)}(a,e),_n(null,e,r),xn(a,t,n,r),Tn(e.children,a,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:Mn(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function Mn(e,t,n,r){const{sel:o,owner:i}=e,s=fn(o,r);let l;const c=new s((t=>{l=function(e,t,n){let r=_r(e);if(!I(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;return r=Lr(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(e.elm=c,e.vm=l,An(c,i,r),Pn(c,i,r),l)$n(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");_n(null,e,r),xn(c,t,n,r),l&&(ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE||Hr(l)),Tn(e.children,c,r,null),l&&function(e){Pr(e)}(l)}function Tn(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];Nn(i)&&Cn(i,t,n,r)}}function Sn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&(5===o?kn(e.children,t,n,r):On(i,t,n)),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;kn(e.children,i,n,t);break}case 3:{const{vm:t}=e;I(t)||function(e){Ar(e)}(t)}}}function kn(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];Nn(i)&&Sn(i,t,n,r)}}function Nn(e){return null!=e}function An(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function Ln(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function xn(e,t,n,r){r.insert(e,t,n)}function On(e,t,n){n.remove(e,t)}function _n(e,t,n){F(e)&&(bn(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(I(r))return;const{getClassList:o}=t,i=o(n);for(const e in r)i.add(e)}(t,n),function(e,t){const{elm:n,data:{styleDecls:r}}=e;if(I(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=F(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),c=yn(o),a=yn(i);let u;for(u in a)I(c[u])&&l.remove(u);for(u in c)I(a[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((F(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;U(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(I(r))return;const o=F(e)?fe:e.data.attrs;if(o===r)return;const{elm:i}=t,{setAttribute:s,removeAttribute:l}=n;for(const e in r){const t=r[e];o[e]!==t&&(Ve(i,e),58===$.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===$.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):F(t)||I(t)?l(i,e):s(i,e,t),Be())}}(e,t,n),gn(e,t,n)}function Pn(e,t,n){const r=an(t);if(!F(r)){const{getClassList:t}=n;t(e).add(r)}const{stylesheetToken:o}=t.context;1!==t.shadowMode||I(o)||(e.$shadowToken$=o)}function $n(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(F(r))continue;let o="";hn(r)&&(o=(null===(n=r.data.attrs)||void 0===n?void 0:n.slot)||"");const s=i[o]=i[o]||[];T.call(s,r)}if(V(e.isDirty)){const t=f(o);if(t.length!==f(i).length)return void pr(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(I(i[r])||o[r].length!==i[r].length)return void pr(e);const s=o[r],l=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(s[t]!==l[t])return void pr(e)}}}(t,n),e.aChildren=n,e.children=he)}const Rn=new WeakMap;function Dn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(Nn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}function Hn(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],c=e[s];const a=t.length-1;let u,d,f,h,p=a,m=t[0],g=t[p],w=!1;for(;o<=s&&i<=p;)Nn(l)?Nn(c)?Nn(m)?Nn(g)?pn(l,m)?(En(l,m,n,r),l=e[++o],m=t[++i]):pn(c,g)?(En(c,g,n,r),c=e[--s],g=t[--p]):pn(l,g)?(En(l,g,n,r),xn(l.elm,n,r.nextSibling(c.elm),r),l=e[++o],g=t[--p]):pn(c,m)?(En(c,m,n,r),xn(m.elm,n,l.elm,r),c=e[--s],m=t[++i]):(void 0===u&&(u=Dn(e,o,s)),d=u[m.key],I(d)?(Cn(m,n,r,l.elm),m=t[++i]):(f=e[d],Nn(f)&&(f.sel!==m.sel?Cn(m,n,r,l.elm):(En(f,m,n,r),w||(w=!0,e=[...e]),e[d]=void 0,xn(f.elm,n,l.elm,r))),m=t[++i])):g=t[--p]:m=t[++i]:c=e[--s]:l=e[++o];if(o<=s||i<=p)if(o>s){let e,o=p;do{e=t[++o]}while(!Nn(e)&&o<a);h=Nn(e)?e.elm:null,Tn(t,n,r,h,i,p+1)}else kn(e,n,r,!0,o,s+1)}function In(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void Tn(t,n,r,null);if(0===i)return void kn(e,n,r,!0);let s=null;for(let o=i-1;o>=0;o-=1){const i=e[o],l=t[o];l!==i&&(Nn(i)?Nn(l)?(En(i,l,n,r),s=l.elm):Sn(i,n,r,!0):Nn(l)&&(Cn(l,n,r,s),s=l.elm))}}const Fn=Symbol.iterator;function Bn(e,t,n=he){const r=tr(),{key:o,ref:i}=t,s={type:2,sel:e,data:t,children:n,elm:void 0,key:o,owner:r};return I(i)||be(r,i,s),s}function Vn(e,t,n,r=he){const o=tr(),{key:i,ref:s}=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){T.call(tr().velements,e)}(l),I(s)||be(o,s,l),l}function jn(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:tr()}}function Wn(e){var t;return t=e,Rn.set(t,1),e}let Un=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const Gn=s({s:function(e,t,n,r){I(r)||I(r[e])||0===r[e].length||(n=r[e]);const o=tr(),{renderMode:i,shadowMode:s}=o;return 0===i?(Wn(n),n):(1===s&&Wn(n),Bn("slot",t,n))},h:Bn,c:Vn,i:function(e,t){const n=[];if(Wn(n),I(e)||null===e)return n;const r=e[Fn]();let o=r.next(),i=0,{value:s,done:l}=o;for(;!1===l;){o=r.next(),l=o.done;const e=t(s,i,0===i,!0===l);m(e)?T.apply(n,e):T.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];Wn(n);for(let r=0;r<t;r+=1){const t=e[r];m(t)?T.apply(n,t):T.call(n,t)}return n},t:jn,d:function(e){return null==e?"":String(e)},b:function(e){const t=tr();if(F(t))throw new Error;const n=t;return function(t){ur(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:"c",owner:tr()}},dc:function(e,t,n,r=he){if(null==t)return null;if(!en(t))throw new Error(`Invalid LWC Constructor ${z(t)} for custom element <${e}>.`);return Vn(e,t,n,r)},fr:function(e,t,n){return{type:5,sel:void 0,key:e,elm:void 0,children:[jn(""),...t,jn("")],stable:n,owner:tr()}},ti:function(e){return e>0&&!(B(e)||V(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:tr()}},gid:function(e){const t=tr();if(I(e)||""===e)return e;if(F(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?R.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=tr();if(I(e)||""===e)return e;if(F(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return Un(e)}});let Kn=!1,zn=G;const Yn={enableProfiler(){Kn=!0},disableProfiler(){Kn=!1},attachDispatcher(e){zn=e,this.enableProfiler()},detachDispatcher(){const e=zn;return zn=G,this.disableProfiler(),e}};function qn(e,t){Kn&&zn(e,0,t.tagName,t.idx,t.renderMode,t.shadowMode)}function Xn(e,t){Kn&&zn(e,1,t.tagName,t.idx,t.renderMode,t.shadowMode)}function Jn(e,t){Kn&&zn(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 Qn(e,t){Kn&&zn(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 Zn=!1,er=null;function tr(){return er}function nr(e){er=e}function rr(e){return(t,...n)=>{const o=r(null);return function(){const{context:{hasScopedStyles:r,stylesheetToken:i},shadowMode:s,renderer:l}=tr(),c=!I(i),a=1===s;let u=0;if(c&&r&&(u|=1),c&&a&&(u|=2),!I(o[u]))return o[u];const d=r&&c?" "+i:"",f=r&&c?` class="${i}"`:"",h=c&&a?" "+i:"";let p="";for(let e=0,r=n.length;e<r;e++)switch(n[e]){case 0:p+=t[e]+d;break;case 1:p+=t[e]+f;break;case 2:p+=t[e]+h;break;case 3:p+=t[e]+f+h}return p+=t[t.length-1],o[u]=e(p,l),o[u]}}}const or=rr(((e,t)=>{const{createFragment:n}=t;return n(e)})),ir=rr(((e,t)=>{const{createFragment:n,getFirstChild:r}=t;return r(n("<svg>"+e+"</svg>"))}));function sr(e,t){const n=Zn,o=er;let i=[];return jr(e,e.owner,(()=>{er=e,qn(1,e)}),(()=>{const{component:n,context:o,cmpSlots:s,cmpTemplate:l,tro:c}=e;c.observe((()=>{if(t!==l){if(F(l)||Vr(e),c=t,!jt.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: ${z(t)}.`);e.cmpTemplate=t,o.tplCache=r(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!I(t))for(let e=0;e<t.length;e++)if(B(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:c}}=e,{stylesheets:a,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let h,p,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:y}=r;I(g)||(w&&s(n).remove(rn(g)),y&&l(n,rn(g))),I(a)||0===a.length||(h=u),I(h)||(f&&(s(n).add(rn(h)),p=!0),d&&(c(n,rn(h),""),m=!0)),r.stylesheetToken=h,r.hasTokenInClass=p,r.hasTokenInAttribute=m}(e,t);const n=ln(e,t);o.styleVNodes=0===n.length?null:un(e,n)}var c;const a=Boolean(t.hasRefs);e.hasRefVNodes=a,e.refVNodes=a?r(null):null,e.velements=[],Zn=!0,i=t.call(void 0,Gn,n,s,o.tplCache);const{styleVNodes:u}=o;F(u)||O.apply(i,u)}))}),(()=>{Zn=n,er=o,Xn(1,e)})),i}let lr=null;function cr(e){return lr===e}function ar(e,t,n){const{component:r,callHook:o,owner:i}=e;jr(e,i,G,(()=>{o(r,t,n)}),G)}function ur(e,t,n,r){const{callHook:o,owner:i}=e;jr(e,i,G,(()=>{o(n,t,[r])}),G)}const dr=new Map;function fr(e){return Ne((()=>{const{isDirty:t}=e;V(t)&&(pr(e),function(e){if(B(e.isScheduled))return;e.isScheduled=!0,0===Rr.length&&me(Dr);T.call(Rr,e)}(e))}))}function hr(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=tr();let s,l=!1;return jr(e,o,(()=>{nr(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{nr(i)})),l?sr(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function pr(e){e.isDirty=!0}const mr=new WeakMap;function gr(e,t){if(!j(t))throw new TypeError;let n=mr.get(t);return I(n)&&(n=function(n){ur(e,t,void 0,n)},mr.set(t,n)),n}const wr=r(null),yr=["rendered","connected","disconnected"];function br(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 vr=0;const Er=new WeakMap;function Cr(e,t,n=[]){return t.apply(e,n)}function Mr(e,t,n){e[t]=n}function Tr(e,t){return e[t]}function Sr(e){Pr(e)}function kr(e){const t=Or(e);Jn(7,t),1===t.state&&Nr(e),Hr(t),Pr(t),Qn(7,t)}function Nr(e){Ar(Or(e))}function Ar(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){V(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=wr;t&&br(e,t);Ir(e)&&function(e){const{wiredDisconnecting:t}=e.context;jr(e,e,G,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),G)}(e);const{disconnectedCallback:n}=e.def;I(n)||(qn(5,e),ar(e,n),Xn(5,e))}(e),Fr(e),function(e){const{aChildren:t}=e;Br(t)}(e)}}function Lr(e,t,n,o){const{mode:i,owner:s,tagName:l,hydrated:c}=o,a=tn(t),u={elm:e,def:a,idx:vr++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,refVNodes:null,hasRefVNodes:!1,children:he,aChildren:he,velements:he,cmpProps:r(null),cmpFields:r(null),cmpSlots:r(null),oar:r(null),cmpTemplate:null,hydrated:Boolean(c),renderMode:a.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:fe,wiredConnecting:he,wiredDisconnecting:he},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:Cr,setHook:Mr,getHook:Tr,renderer:n};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ue.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!F(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=F(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,n),u.tro=fr(u),function(e,t){const n=lr;let r;qn(0,e),lr=e;try{const o=new t;if(lr.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(Xn(0,e),lr=n,!I(r))throw Le(e,r),r}}(u,a.ctor),Ir(u)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],s=Wr.get(i);if(!I(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=Gr(e,t,s),c=s.dynamic.length>0;T.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!c?i():Promise.resolve().then(i)})),T.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function xr(e,t){Er.set(e,t)}function Or(e){return Er.get(e)}function _r(e){return Er.get(e)}function Pr(e){if(B(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&jr(e,e,(()=>{qn(2,e)}),(()=>{vn(r,t,n,o)}),(()=>{Xn(2,e)}));1===e.state&&$r(e)}(e,hr(e))}}function $r(e){const{def:{renderedCallback:t}}=e,{rendered:n}=wr;n&&br(e,n),I(t)||(qn(4,e),ar(e,t),Xn(4,e))}let Rr=[];function Dr(){Jn(8);const e=Rr.sort(((e,t)=>e.idx-t.idx));Rr=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{Pr(r)}catch(r){throw t+1<n&&(0===Rr.length&&me(Dr),O.apply(Rr,A.call(e,t+1))),Qn(8),r}}Qn(8)}function Hr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=wr;n&&br(e,n),Ir(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;I(r)||(qn(3,e),ar(e,r),Xn(3,e))}function Ir(e){return c(e.def.wire).length>0}function Fr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!I(n)){const e=_r(n);I(e)||Ar(e)}}}function Br(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!F(n)&&!I(n.elm))switch(n.type){case 2:Br(n.children);break;case 3:Ar(Or(n.elm));break}}}function Vr(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];F(o)||I(o.elm)||r(o.elm,n)}e.children=he,Fr(e),e.velements=he}function jr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!I(i)){Le(e,i);const n=F(t)?void 0:function(e){let t=e;for(;!F(t);){if(!I(t.def.errorCallback))return t;t=t.owner}}(t);if(I(n))throw i;Vr(e),qn(6,e);ar(n,n.def.errorCallback,[i,i.wcStack]),Xn(6,e)}}}const Wr=new Map;class Ur extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),o(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function Gr(e,t,n){const{method:r,adapter:o,configCallback:s,dynamic:l}=n,c=I(r)?function(e,t){return n=>{We(e,t,n)}}(e,t):function(e,t){return n=>{jr(e,e.owner,G,(()=>{t.call(e.component,n)}),G)}}(e,r);let a,u;i(c,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),i(c,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),jr(e,e,G,(()=>{u=new o(c)}),G);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=Ne((()=>{!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,s,(t=>{jr(e,e,G,(()=>{u.update(t,a)}),G)}));return I(o.contextSchema)||function(e,t,n){const{adapter:r}=t,o=zr(r);if(I(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:c}}=e;T.call(s,(()=>{const e=new Ur(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){T.call(l,e)}});c(i,e)}))}(e,n,(t=>{a!==t&&(a=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const Kr=new Map;function zr(e){return Kr.get(e)}function Yr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};Wr.set(e,o)}function qr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};Wr.set(e,o)}let Xr=!1;function Jr(e){const t=hr(e);e.children=t;const{renderRoot:n,renderer:{getFirstChild:r}}=e;eo(r(n),t,n,e),$r(e)}function Qr(e,t,n){var r,o;let i;switch(t.type){case 0:i=function(e,t,n){var r;if(!ro(t,e,3,n))return to(e,t,n);const{setText:o}=n;return o(e,null!==(r=t.text)&&void 0!==r?r:null),t.elm=e,e}(e,t,n);break;case 1:i=function(e,t,n){var r;if(!ro(t,e,8,n))return to(e,t,n);const{setProperty:o}=n;return o(e,Zr,null!==(r=t.text)&&void 0!==r?r:null),t.elm=e,e}(e,t,n);break;case 4:i=function(e,t,n){if(!function(e,t,n,r){const{getProperty:o,getAttribute:i}=r;if(3===o(e,"nodeType"))return!!ro(n,t,3,r)&&o(e,Zr)===o(t,Zr);if(8===o(e,"nodeType"))return!!ro(n,t,8,r)&&o(e,Zr)===o(t,Zr);if(!ro(n,t,1,r))return!1;let s=!0;if(o(e,"tagName")!==o(t,"tagName"))return!1;return o(e,"getAttributeNames").call(e).forEach((r=>{i(e,r)!==i(t,r)&&(Oe(`Mismatch hydrating element <${o(e,"tagName").toLowerCase()}>: attribute "${r}" has different values, expected "${i(e,r)}" but found "${i(t,r)}"`,n.owner),s=!1)})),s}(t.fragment,e,t,n))return to(e,t,n);return t.elm=e,e}(e,t,n);break;case 5:i=function(e,t,n){const{children:r,owner:o}=t;return eo(e,r,n.getProperty(e,"parentNode"),o),t.elm=r[r.length-1].elm}(e,t,n);break;case 2:i=function(e,t,n){if(!ro(t,e,1,n)||!oo(t,e,n))return to(e,t,n);t.elm=e;const{owner:r}=t,{context:o}=t.data,i=Boolean(!I(o)&&!I(o.lwc)&&"manual"===o.lwc.dom);if(i){const{data:{props:r}}=t,{getProperty:o}=n;I(r)||I(r.innerHTML)||o(e,"innerHTML")===r.innerHTML&&(t.data=Object.assign(Object.assign({},t.data),{props:ye(r,"innerHTML")}))}if(no(t,n),!i){const{getFirstChild:o}=n;eo(o(e),t.children,e,r)}return e}(e,t,null!==(r=t.data.renderer)&&void 0!==r?r:n);break;case 3:i=function(e,t,n){if(!ro(t,e,1,n)||!oo(t,e,n))return to(e,t,n);const{sel:r,mode:o,ctor:i,owner:s}=t,l=Lr(e,i,n,{mode:o,owner:s,tagName:r,hydrated:!0});if(t.elm=e,t.vm=l,$n(t,l),no(t,n),Hr(l),0!==l.renderMode){const{getFirstChild:r}=n;eo(r(e),t.children,e,l)}return Jr(l),e}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}return n.nextSibling(i)}const Zr="nodeValue";function eo(e,t,n,r){let o=e,i=null;const{renderer:s}=r;for(let e=0;e<t.length;e++){const r=t[e];F(r)||(o?(o=Qr(o,r,s),i=r.elm):(Xr=!0,Cn(r,n,s,i),i=r.elm))}if(o){Xr=!0;const{nextSibling:e}=s;do{const t=o;o=e(o),On(t,n,s)}while(o)}}function to(e,t,n){Xr=!0;const{getProperty:r}=n,o=r(e,"parentNode");return Cn(t,o,n,e),On(e,o,n),t.elm}function no(e,t){bn(e,t),gn(null,e,t)}function ro(e,t,n,r){const{getProperty:o}=r;return o(t,"nodeType")===n}function oo(e,t,n){const{getProperty:r}=n;if(e.sel.toLowerCase()!==r(t,"tagName").toLowerCase())return!1;const o=function(e,t,n){const{data:{attrs:r={}}}=e;let o=!0;for(const[e,i]of Object.entries(r)){const{getAttribute:r}=n,s=r(t,e);String(i)!==s&&(o=!1)}return o}(e,t,n),i=function(e,t,n){const{data:r,owner:o}=e;let{className:i,classMap:s}=r;const{getProperty:l,getClassList:c}=n,a=an(o),u=function(e){return 3===e.type}(e)?function(e){const{template:{stylesheetToken:t}}=tn(e.ctor);return I(t)?null:rn(t)}(e):null;a&&(I(i)?I(s)?i=F(u)?`${a}`:`${a} ${u}`:s=Object.assign(Object.assign(Object.assign({},s),{[a]:!0}),F(u)?{}:{[u]:!0}):i=F(u)?`${a} ${i}`:`${a} ${i} ${u}`);let d=!0;if(I(i)||String(i)===l(t,"className")){if(!I(s)){const e=c(t);let n="";for(const t in s)n+=" "+t,e.contains(t)||(d=!1);n.trim(),e.length>f(s).length&&(d=!1)}}else d=!1;return d}(e,t,n),s=function(e,t,n){const{data:{style:r,styleDecls:o}}=e,{getAttribute:i}=n,s=i(t,"style")||"";let l=!0;if(I(r)||r===s){if(!I(o)){const e=function(e){const t={},n=e.split(ge);for(const e of n)if(e){const[n,r]=e.split(we);void 0!==n&&void 0!==r&&(t[n.trim()]=r.trim())}return t}(s),t=[];for(let n=0,r=o.length;n<r;n++){const[r,i,s]=o[n];t.push(`${r}: ${i+(s?" important!":"")}`);const c=e[r];I(c)?l=!1:c.startsWith(i)?s&&!c.endsWith("!important")&&(l=!1):l=!1}f(e).length>o.length&&(l=!1),E.call(t,";")}}else l=!1;return l}(e,t,n);return o&&i&&s}let io=!1;const so=j(CSSStyleSheet.prototype.replaceSync)&&m(document.adoptedStyleSheets),lo=so&&l(document.adoptedStyleSheets,"length").writable,co=!I(document.documentMode),ao=new Map;function uo(e){const t=document.createElement("style");return t.type="text/css",t.textContent=e,t}function fo(e,t,n){const r=function(e,t){const{element:n,usedElement:r}=t;return r?co?uo(e):n.cloneNode(!0):(t.usedElement=!0,n)}(e,n);t.appendChild(r)}function ho(e,t){let n=ao.get(e);return I(n)&&(n={stylesheet:void 0,element:void 0,roots:void 0,global:!1,usedElement:!1},ao.set(e,n)),t&&I(n.stylesheet)?n.stylesheet=function(e){const t=new CSSStyleSheet;return t.replaceSync(e),t}(e):!t&&I(n.element)&&(n.element=uo(e)),n}function po(e,t){const n=ho(e,so);let{roots:r}=n;if(I(r))r=n.roots=new WeakSet;else if(r.has(t))return;r.add(t),so?function(e,t,n){const{adoptedStyleSheets:r}=t,{stylesheet:o}=n;lo?r.push(o):t.adoptedStyleSheets=[...r,o]}(0,t,n):fo(e,t,n)}function mo(e){const t=function(e){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)}});function n(e){return void 0===e}let r;if(e.getCustomElement=void 0,e.defineCustomElement=void 0,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}}())e.getCustomElement=customElements.get.bind(customElements),e.defineCustomElement=customElements.define.bind(customElements),r=HTMLElement;else{const t=Object.create(null),n=new WeakMap;e.defineCustomElement=function(e,r){if(e!==String.prototype.toLowerCase.call(e)||t[e])throw new TypeError("Invalid Registration");t[e]=r,n.set(r,e)},e.getCustomElement=function(e){return t[e]},r=function e(){if(!(this instanceof e))throw new TypeError("Invalid Invocation");const{constructor:t}=this,r=n.get(t);if(!r)throw new TypeError("Invalid Construction");const o=document.createElement(r);return Object.setPrototypeOf(o,t.prototype),o},r.prototype=HTMLElement.prototype}e.createFragment=void 0;if("function"==typeof HTMLTemplateElement)e.createFragment=function(e){const t=document.createElement("template");return t.innerHTML=e,t.content.firstChild};else{const t={caption:["table"],col:["colgroup","table"],colgroup:["table"],option:["select"],tbody:["table"],td:["tr","tbody","table"],th:["tr","tbody","table"],thead:["table"],tfoot:["table"],tr:["tbody","table"]},r=function(e){return(/<([a-z][^/\0>\x20\t\r\n\f]+)/i.exec(e)||["",""])[1].toLowerCase()};e.createFragment=function(e){const o=t[r(e)];if(!n(o))for(const t of o)e=`<${t}>${e}</${t}>`;const i=document.implementation.createHTMLDocument("");i.body.innerHTML=e;let s=i.body;if(!n(o))for(let e=0;e<o.length;e++)s=s.firstChild;return s.firstChild}}const o=r;return e.HTMLElementExported=o,e.addEventListener=function(e,t,n,r){e.addEventListener(t,n,r)},e.assertInstanceOfHTMLElement=function(e,n){t.invariant(e instanceof HTMLElement,n)},e.attachShadow=function(e,t){return null!==e.shadowRoot?e.shadowRoot:e.attachShadow(t)},e.cloneNode=function(e,t){return e.cloneNode(t)},e.createComment=function(e){return document.createComment(e)},e.createElement=function(e,t){return n(t)?document.createElement(e):document.createElementNS(t,e)},e.createText=function(e){return document.createTextNode(e)},e.dispatchEvent=function(e,t){return e.dispatchEvent(t)},e.getAttribute=function(e,t,r){return n(r)?e.getAttribute(t):e.getAttributeNS(r,t)},e.getBoundingClientRect=function(e){return e.getBoundingClientRect()},e.getChildNodes=function(e){return e.childNodes},e.getChildren=function(e){return e.children},e.getClassList=function(e){return e.classList},e.getElementsByClassName=function(e,t){return e.getElementsByClassName(t)},e.getElementsByTagName=function(e,t){return e.getElementsByTagName(t)},e.getFirstChild=function(e){return e.firstChild},e.getFirstElementChild=function(e){return e.firstElementChild},e.getLastChild=function(e){return e.lastChild},e.getLastElementChild=function(e){return e.lastElementChild},e.getProperty=function(e,t){return e[t]},e.insert=function(e,t,n){t.insertBefore(e,n)},e.isConnected=function(e){return e.isConnected},e.nextSibling=function(e){return e.nextSibling},e.querySelector=function(e,t){return e.querySelector(t)},e.querySelectorAll=function(e,t){return e.querySelectorAll(t)},e.remove=function(e,t){t.removeChild(e)},e.removeAttribute=function(e,t,r){n(r)?e.removeAttribute(t):e.removeAttributeNS(r,t)},e.removeEventListener=function(e,t,n,r){e.removeEventListener(t,n,r)},e.setAttribute=function(e,t,r,o){return n(o)?e.setAttribute(t,r):e.setAttributeNS(o,t,r)},e.setCSSStyleProperty=function(e,t,n,r){e.style.setProperty(t,n,r?"important":"")},e.setProperty=function(e,t,n){e[t]=n},e.setText=function(e,t){e.nodeValue=t},e}({});return Object.setPrototypeOf(t,e),t}const go=n(mo(null),{insertStylesheet:function(e,t){I(t)?function(e){const t=ho(e,!1);t.global||(t.global=!0,fo(e,document.head,t))}(e):po(e,t)},isNativeShadowDefined:Q.$isNativeShadowRootDefined$,isSyntheticShadowDefined:u.call(Element.prototype,"$shadowToken$")});function wo(e,t,n){const r=Lr(e,t,go,{mode:"open",owner:null,tagName:e.tagName.toLowerCase(),hydrated:!0});for(const[t,r]of Object.entries(n))e[t]=r;return r}function yo(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(!j(t))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if(!W(n)||F(n))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${n}.`);if(_r(e))console.warn('"hydrateComponent" expects an element that is not hydrated.',e);else try{!function(e){Xr=!1,Hr(e),Jr(e),Xr&&Oe("Hydration completed with errors.",e)}(wo(e,t,n))}catch(r){console.error("Recovering from error while hydrating: ",r),function(e,t){if(e.shadowRoot){const t=e.shadowRoot;for(;!F(t.firstChild);)t.removeChild(t.firstChild)}if("light"===t.renderMode)for(;!F(e.firstChild);)e.removeChild(e.firstChild)}(e,t),wo(e,t,n),kr(e)}}const bo=new WeakSet;function vo(e){const t=function(e){return tn(e).bridge}(e);return class extends t{constructor(){super(),this.isConnected?(yo(this,e,{}),bo.add(this)):Lr(this,e,go,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){bo.has(this)?bo.delete(this):kr(this)}disconnectedCallback(){Nr(this)}}}const Eo=Node,Co=new WeakMap,Mo=new WeakMap;function To(e,t){const n=t.get(e);return I(n)||n(e),e}if(!ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE){const{appendChild:e,insertBefore:t,removeChild:r,replaceChild:o}=Eo.prototype;n(Eo.prototype,{appendChild(t){return To(e.call(this,t),Co)},insertBefore(e,n){return To(t.call(this,e,n),Co)},removeChild(e){return To(r.call(this,e),Mo)},replaceChild(e,t){const n=o.call(this,e,t);return To(n,Mo),To(e,Co),n}})}const So=Node;const ko=new Map;return i(Lt,"CustomElementConstructor",{get(){return function(e){if(e===Lt)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let t=ko.get(e);return I(t)&&(t=vo(e),ko.set(e,t)),t}(this)}}),s(Lt),h(Lt.prototype),e.LightningElement=Lt,e.__unstable__ProfilerControl=Yn,e.api=function(){throw new Error},e.buildCustomElementConstructor=function(e){return e.CustomElementConstructor},e.createContextProvider=function(e){let t=zr(e);if(!I(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){Kr.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)||i(r)})),o(r),e.stopImmediatePropagation()}))}},e.createElement=function(e,t){if(!W(t)||F(t))throw new TypeError(`"createElement" function expects an object as second parameter but received "${z(t)}".`);const n=t.is;if(!j(n))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const r=fn(e,go);let o=!1;const i=new r((r=>{Lr(r,n,go,{tagName:e,mode:"closed"!==t.mode?"open":"closed",owner:null}),ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE||(Co.set(r,kr),Mo.set(r,Nr)),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.freezeTemplate=function(e){},e.getComponentConstructor=function(e){let t=null;if(!I(e)){const n=_r(e);I(n)||(t=n.def.ctor)}return t},e.getComponentDef=function(e){const t=tn(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:ne(e)};const c={};for(const e in s)c[e]=s[e].value;return{ctor:n,name:r,props:l,methods:c}},e.hydrateComponent=yo,e.isComponentConstructor=en,e.isNodeFromTemplate=function(e){if(V(e instanceof So))return!1;if(e instanceof ShadowRoot)return!1;const t=e.getRootNode();return!!(t instanceof ShadowRoot&&V(u.call(a(t),"synthetic")))||go.isSyntheticShadowDefined&&!I(e.$shadowResolver$)},e.parseFragment=or,e.parseSVGFragment=ir,e.readonly=function(e){return Mt(e)},e.register=function(e){for(let t=0;t<yr.length;++t){const n=yr[t];if(n in e){let t=wr[n];I(t)&&(wr[n]=t=[]),T.call(t,e[n])}}},e.registerComponent=function(e,{tmpl:t}){return j(e)&&dr.set(e,t),e},e.registerDecorators=function(e,t){const n=e.prototype,{publicProps:o,publicMethods:s,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(!I(o))for(const e in o){const t=o[e];if(g[e]=t.config,w=l(n,e),t.config>0){if(I(w))throw new Error;w=Ht(e,w)}else w=I(w)||I(w.get)?Dt(e):Ht(e,w);f[e]=w,i(n,e,w)}if(I(s)||_.call(s,(e=>{if(w=l(n,e),I(w))throw new Error;d[e]=w})),!I(c))for(const e in c){const{adapter:t,method:r,config:o,dynamic:s=[]}=c[e];if(w=l(n,e),1===r){if(I(w))throw new Error;h[e]=w,Yr(w,t,o,s)}else w=Ft(e),p[e]=w,qr(w,t,o,s),i(n,e,w)}if(!I(a))for(const e in a)w=l(n,e),w=It(e),i(n,e,w);if(!I(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=l(n,t);const r=!I(o)&&t in o,i=!I(a)&&t in a;r||i||(m[t]=$t(t))}return function(e,t){Bt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:h,wiredFields:p,observedFields:m}),e},e.registerTemplate=function(e){return jt.add(e),i(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return I(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=I(e)?void 0:e.shadowAttribute}}),e},e.renderer=go,e.rendererFactory=mo,e.sanitizeAttribute=function(e,t,n,r){return r},e.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(I(ae[e])){const n=f(ae).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ue[e];if(!I(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(ue,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},e.setFeatureFlagForTest=function(e,t){},e.setHooks=function(e){var n;t.isFalse(io,"Hooks are already overridden, only one definition is allowed."),io=!0,n=e.sanitizeHtmlContent,Un=n},e.swapComponent=function(e,t){if(!ue.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},e.swapStyle=function(e,t){if(!ue.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},e.swapTemplate=function(e,t){if(!ue.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},e.track=function(e){if(1===arguments.length)return Tt(e);throw new Error},e.unwrap=function(e){return Ct.unwrapProxy(e)},e.wire=function(e,t){throw new Error},Object.defineProperty(e,"__esModule",{value:!0}),e}({});
@@ -291,7 +291,7 @@ var LWC = (function (exports) {
291
291
  CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);
292
292
  return attributeName;
293
293
  }
294
- /** version: 2.24.0 */
294
+ /** version: 2.25.0 */
295
295
 
296
296
  /**
297
297
  * Copyright (C) 2018 salesforce.com, inc.
@@ -373,7 +373,7 @@ var LWC = (function (exports) {
373
373
  patch$1(propName);
374
374
  }
375
375
  }
376
- /** version: 2.24.0 */
376
+ /** version: 2.25.0 */
377
377
 
378
378
  /**
379
379
  * Copyright (C) 2018 salesforce.com, inc.
@@ -2493,6 +2493,14 @@ var LWC = (function (exports) {
2493
2493
  const { cmpTemplate, context } = owner;
2494
2494
  return (context.hasScopedStyles && (cmpTemplate === null || cmpTemplate === void 0 ? void 0 : cmpTemplate.stylesheetToken)) || null;
2495
2495
  }
2496
+ /**
2497
+ * This function returns the host style token for a custom element if it
2498
+ * exists. Otherwise it returns null.
2499
+ */
2500
+ function getStylesheetTokenHost(vnode) {
2501
+ const { template: { stylesheetToken }, } = getComponentInternalDef(vnode.ctor);
2502
+ return !isUndefined$1(stylesheetToken) ? makeHostToken(stylesheetToken) : null;
2503
+ }
2496
2504
  function getNearestNativeShadowComponent(vm) {
2497
2505
  const owner = getNearestShadowComponent(vm);
2498
2506
  if (!isNull(owner) && owner.shadowMode === 1 /* ShadowMode.Synthetic */) {
@@ -2604,6 +2612,9 @@ var LWC = (function (exports) {
2604
2612
  function isSameVnode(vnode1, vnode2) {
2605
2613
  return vnode1.key === vnode2.key && vnode1.sel === vnode2.sel;
2606
2614
  }
2615
+ function isVCustomElement(vnode) {
2616
+ return vnode.type === 3 /* VNodeType.CustomElement */;
2617
+ }
2607
2618
 
2608
2619
  /*
2609
2620
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5445,6 +5456,7 @@ var LWC = (function (exports) {
5445
5456
  let { className, classMap } = data;
5446
5457
  const { getProperty, getClassList } = renderer;
5447
5458
  const scopedToken = getScopeTokenClass(owner);
5459
+ const stylesheetTokenHost = isVCustomElement(vnode) ? getStylesheetTokenHost(vnode) : null;
5448
5460
  // Classnames for scoped CSS are added directly to the DOM during rendering,
5449
5461
  // or to the VDOM on the server in the case of SSR. As such, these classnames
5450
5462
  // are never present in VDOM nodes in the browser.
@@ -5453,10 +5465,17 @@ var LWC = (function (exports) {
5453
5465
  // are rendered during SSR. This needs to be accounted for when validating.
5454
5466
  if (scopedToken) {
5455
5467
  if (!isUndefined$1(className)) {
5456
- className = `${scopedToken} ${className}`;
5468
+ className = isNull(stylesheetTokenHost)
5469
+ ? `${scopedToken} ${className}`
5470
+ : `${scopedToken} ${className} ${stylesheetTokenHost}`;
5457
5471
  }
5458
5472
  else if (!isUndefined$1(classMap)) {
5459
- classMap = Object.assign(Object.assign({}, classMap), { [scopedToken]: true });
5473
+ classMap = Object.assign(Object.assign(Object.assign({}, classMap), { [scopedToken]: true }), (isNull(stylesheetTokenHost) ? {} : { [stylesheetTokenHost]: true }));
5474
+ }
5475
+ else {
5476
+ className = isNull(stylesheetTokenHost)
5477
+ ? `${scopedToken}`
5478
+ : `${scopedToken} ${stylesheetTokenHost}`;
5460
5479
  }
5461
5480
  }
5462
5481
  let nodesAreCompatible = true;
@@ -5585,7 +5604,7 @@ var LWC = (function (exports) {
5585
5604
  }
5586
5605
  return ctor;
5587
5606
  }
5588
- /* version: 2.24.0 */
5607
+ /* version: 2.25.0 */
5589
5608
 
5590
5609
  /*
5591
5610
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5780,7 +5799,7 @@ var LWC = (function (exports) {
5780
5799
  function isNull(obj) {
5781
5800
  return obj === null;
5782
5801
  }
5783
- /** version: 2.24.0 */
5802
+ /** version: 2.25.0 */
5784
5803
 
5785
5804
  /*
5786
5805
  * Copyright (c) 2018, salesforce.com, inc.
@@ -6391,7 +6410,7 @@ var LWC = (function (exports) {
6391
6410
  });
6392
6411
  freeze(LightningElement);
6393
6412
  seal(LightningElement.prototype);
6394
- /* version: 2.24.0 */
6413
+ /* version: 2.25.0 */
6395
6414
 
6396
6415
  exports.LightningElement = LightningElement;
6397
6416
  exports.__unstable__ProfilerControl = profilerControl;