lwc 2.20.3 → 2.21.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/engine-dom/esm/es2017/engine-dom.js +41 -61
- package/dist/engine-dom/iife/es2017/engine-dom.js +41 -61
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +28 -49
- package/dist/engine-dom/iife/es5/engine-dom.js +49 -73
- package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +37 -58
- package/dist/engine-dom/umd/es2017/engine-dom.js +41 -61
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +28 -49
- package/dist/engine-dom/umd/es5/engine-dom.js +49 -73
- package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +37 -58
- package/dist/engine-server/commonjs/es2017/engine-server.js +144 -150
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
- package/dist/engine-server/esm/es2017/engine-server.js +144 -150
- package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3 -3
- package/dist/wire-service/esm/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/iife/es5/wire-service.js +2 -2
- package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es5/wire-service.js +2 -2
- package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
- package/package.json +7 -7
|
@@ -305,9 +305,9 @@
|
|
|
305
305
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
306
306
|
*/
|
|
307
307
|
// Increment whenever the LWC template compiler changes
|
|
308
|
-
const LWC_VERSION = "2.
|
|
308
|
+
const LWC_VERSION = "2.21.1";
|
|
309
309
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
310
|
-
/** version: 2.
|
|
310
|
+
/** version: 2.21.1 */
|
|
311
311
|
|
|
312
312
|
/*
|
|
313
313
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -461,7 +461,7 @@
|
|
|
461
461
|
setFeatureFlag(name, value);
|
|
462
462
|
}
|
|
463
463
|
}
|
|
464
|
-
/** version: 2.
|
|
464
|
+
/** version: 2.21.1 */
|
|
465
465
|
|
|
466
466
|
/*
|
|
467
467
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -3903,10 +3903,11 @@
|
|
|
3903
3903
|
const { sel, owner, data: { svg }, } = vnode;
|
|
3904
3904
|
const { createElement } = renderer;
|
|
3905
3905
|
const namespace = isTrue(svg) ? SVG_NAMESPACE : undefined;
|
|
3906
|
-
const elm = createElement(sel, namespace);
|
|
3906
|
+
const elm = (vnode.elm = createElement(sel, namespace));
|
|
3907
3907
|
linkNodeToShadow(elm, owner, renderer);
|
|
3908
|
-
|
|
3909
|
-
|
|
3908
|
+
applyStyleScoping(elm, owner, renderer);
|
|
3909
|
+
applyDomManual(elm, vnode);
|
|
3910
|
+
applyElementRestrictions(elm, vnode);
|
|
3910
3911
|
patchElementPropsAndAttrs$1(null, vnode, renderer);
|
|
3911
3912
|
insertNode(elm, parent, anchor, renderer);
|
|
3912
3913
|
mountVNodes(vnode.children, elm, renderer, null);
|
|
@@ -3921,6 +3922,7 @@
|
|
|
3921
3922
|
const { cloneNode, isSyntheticShadowDefined } = renderer;
|
|
3922
3923
|
const elm = (vnode.elm = cloneNode(vnode.fragment, true));
|
|
3923
3924
|
linkNodeToShadow(elm, owner, renderer);
|
|
3925
|
+
applyElementRestrictions(elm, vnode);
|
|
3924
3926
|
// Marks this node as Static to propagate the shadow resolver. must happen after elm is assigned to the proper shadow
|
|
3925
3927
|
const { renderMode, shadowMode } = owner;
|
|
3926
3928
|
if (isSyntheticShadowDefined) {
|
|
@@ -3928,10 +3930,6 @@
|
|
|
3928
3930
|
elm[KEY__SHADOW_STATIC] = true;
|
|
3929
3931
|
}
|
|
3930
3932
|
}
|
|
3931
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
3932
|
-
const isLight = renderMode === 0 /* RenderMode.Light */;
|
|
3933
|
-
patchElementWithRestrictions(elm, { isPortal: false, isLight });
|
|
3934
|
-
}
|
|
3935
3933
|
insertNode(elm, parent, anchor, renderer);
|
|
3936
3934
|
}
|
|
3937
3935
|
function mountCustomElement(vnode, parent, anchor, renderer) {
|
|
@@ -3948,9 +3946,10 @@
|
|
|
3948
3946
|
// the custom element from the registry is expecting an upgrade callback
|
|
3949
3947
|
vm = createViewModelHook(elm, vnode, renderer);
|
|
3950
3948
|
});
|
|
3951
|
-
linkNodeToShadow(elm, owner, renderer);
|
|
3952
3949
|
vnode.elm = elm;
|
|
3953
3950
|
vnode.vm = vm;
|
|
3951
|
+
linkNodeToShadow(elm, owner, renderer);
|
|
3952
|
+
applyStyleScoping(elm, owner, renderer);
|
|
3954
3953
|
if (vm) {
|
|
3955
3954
|
allocateChildren(vnode, vm);
|
|
3956
3955
|
}
|
|
@@ -4034,22 +4033,6 @@
|
|
|
4034
4033
|
function isVNode(vnode) {
|
|
4035
4034
|
return vnode != null;
|
|
4036
4035
|
}
|
|
4037
|
-
function observeElementChildNodes(elm) {
|
|
4038
|
-
elm.$domManual$ = true;
|
|
4039
|
-
}
|
|
4040
|
-
function setElementShadowToken(elm, token) {
|
|
4041
|
-
elm.$shadowToken$ = token;
|
|
4042
|
-
}
|
|
4043
|
-
// Set the scope token class for *.scoped.css styles
|
|
4044
|
-
function setScopeTokenClassIfNecessary(elm, owner, renderer) {
|
|
4045
|
-
const token = getScopeTokenClass(owner);
|
|
4046
|
-
if (!isNull(token)) {
|
|
4047
|
-
const { getClassList } = renderer;
|
|
4048
|
-
// TODO [#2762]: this dot notation with add is probably problematic
|
|
4049
|
-
// probably we should have a renderer api for just the add operation
|
|
4050
|
-
getClassList(elm).add(token);
|
|
4051
|
-
}
|
|
4052
|
-
}
|
|
4053
4036
|
function linkNodeToShadow(elm, owner, renderer) {
|
|
4054
4037
|
const { renderRoot, renderMode, shadowMode } = owner;
|
|
4055
4038
|
const { isSyntheticShadowDefined } = renderer;
|
|
@@ -4102,31 +4085,37 @@
|
|
|
4102
4085
|
patchAttributes(oldVnode, vnode, renderer);
|
|
4103
4086
|
patchProps(oldVnode, vnode, renderer);
|
|
4104
4087
|
}
|
|
4105
|
-
function
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
if (
|
|
4109
|
-
const {
|
|
4110
|
-
|
|
4111
|
-
|
|
4112
|
-
|
|
4113
|
-
context.lwc.dom === "manual" /* LwcDomMode.Manual */) {
|
|
4114
|
-
// this element will now accept any manual content inserted into it
|
|
4115
|
-
observeElementChildNodes(elm);
|
|
4116
|
-
}
|
|
4117
|
-
if (!isUndefined$1(stylesheetToken)) {
|
|
4118
|
-
// when running in synthetic shadow mode, we need to set the shadowToken value
|
|
4119
|
-
// into each element from the template, so they can be styled accordingly.
|
|
4120
|
-
setElementShadowToken(elm, stylesheetToken);
|
|
4121
|
-
}
|
|
4088
|
+
function applyStyleScoping(elm, owner, renderer) {
|
|
4089
|
+
// Set the class name for `*.scoped.css` style scoping.
|
|
4090
|
+
const scopeToken = getScopeTokenClass(owner);
|
|
4091
|
+
if (!isNull(scopeToken)) {
|
|
4092
|
+
const { getClassList } = renderer;
|
|
4093
|
+
// TODO [#2762]: this dot notation with add is probably problematic
|
|
4094
|
+
// probably we should have a renderer api for just the add operation
|
|
4095
|
+
getClassList(elm).add(scopeToken);
|
|
4122
4096
|
}
|
|
4097
|
+
// Set property element for synthetic shadow DOM style scoping.
|
|
4098
|
+
const { stylesheetToken: syntheticToken } = owner.context;
|
|
4099
|
+
if (owner.shadowMode === 1 /* ShadowMode.Synthetic */ && !isUndefined$1(syntheticToken)) {
|
|
4100
|
+
elm.$shadowToken$ = syntheticToken;
|
|
4101
|
+
}
|
|
4102
|
+
}
|
|
4103
|
+
function applyDomManual(elm, vnode) {
|
|
4104
|
+
var _a;
|
|
4105
|
+
const { owner, data: { context }, } = vnode;
|
|
4106
|
+
if (owner.shadowMode === 1 /* ShadowMode.Synthetic */ && ((_a = context === null || context === void 0 ? void 0 : context.lwc) === null || _a === void 0 ? void 0 : _a.dom) === "manual" /* LwcDomMode.Manual */) {
|
|
4107
|
+
elm.$domManual$ = true;
|
|
4108
|
+
}
|
|
4109
|
+
}
|
|
4110
|
+
function applyElementRestrictions(elm, vnode) {
|
|
4111
|
+
var _a, _b;
|
|
4123
4112
|
if (process.env.NODE_ENV !== 'production') {
|
|
4124
|
-
const
|
|
4125
|
-
const
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4113
|
+
const isPortal = vnode.type === 2 /* VNodeType.Element */ && ((_b = (_a = vnode.data.context) === null || _a === void 0 ? void 0 : _a.lwc) === null || _b === void 0 ? void 0 : _b.dom) === "manual" /* LwcDomMode.Manual */;
|
|
4114
|
+
const isLight = vnode.owner.renderMode === 0 /* RenderMode.Light */;
|
|
4115
|
+
patchElementWithRestrictions(elm, {
|
|
4116
|
+
isPortal,
|
|
4117
|
+
isLight,
|
|
4118
|
+
});
|
|
4130
4119
|
}
|
|
4131
4120
|
}
|
|
4132
4121
|
function allocateChildren(vnode, vm) {
|
|
@@ -4161,15 +4150,6 @@
|
|
|
4161
4150
|
return vm;
|
|
4162
4151
|
}
|
|
4163
4152
|
const { sel, mode, ctor, owner } = vnode;
|
|
4164
|
-
setScopeTokenClassIfNecessary(elm, owner, renderer);
|
|
4165
|
-
if (owner.shadowMode === 1 /* ShadowMode.Synthetic */) {
|
|
4166
|
-
const { stylesheetToken } = owner.context;
|
|
4167
|
-
// when running in synthetic shadow mode, we need to set the shadowToken value
|
|
4168
|
-
// into each element from the template, so they can be styled accordingly.
|
|
4169
|
-
if (!isUndefined$1(stylesheetToken)) {
|
|
4170
|
-
setElementShadowToken(elm, stylesheetToken);
|
|
4171
|
-
}
|
|
4172
|
-
}
|
|
4173
4153
|
vm = createVM(elm, ctor, renderer, {
|
|
4174
4154
|
mode,
|
|
4175
4155
|
owner,
|
|
@@ -6841,7 +6821,7 @@
|
|
|
6841
6821
|
}
|
|
6842
6822
|
return ctor;
|
|
6843
6823
|
}
|
|
6844
|
-
/* version: 2.
|
|
6824
|
+
/* version: 2.21.1 */
|
|
6845
6825
|
|
|
6846
6826
|
/*
|
|
6847
6827
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -7529,7 +7509,7 @@
|
|
|
7529
7509
|
});
|
|
7530
7510
|
freeze(LightningElement);
|
|
7531
7511
|
seal(LightningElement.prototype);
|
|
7532
|
-
/* version: 2.
|
|
7512
|
+
/* version: 2.21.1 */
|
|
7533
7513
|
|
|
7534
7514
|
exports.LightningElement = LightningElement;
|
|
7535
7515
|
exports.__unstable__ProfilerControl = profilerControl;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).LWC={})}(this,(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:C,map:E,pop:M,push:k,reduce:S,reverse:T,shift:x,slice:A,sort:N,splice:O,unshift:P,forEach:L}=Array.prototype,{fromCharCode:$}=String,{charCodeAt:R,replace:_,slice:D,toLowerCase:F}=String.prototype;function H(e){return void 0===e}function I(e){return null===e}function j(e){return!0===e}function W(e){return!1===e}function B(e){return"function"==typeof e}function V(e){return"object"==typeof e}function K(e){return"string"==typeof e}function G(){}const z={}.toString;function U(e){return e&&e.toString?m(e)?C.call(E.call(e,U),","):e.toString():"object"==typeof e?z.call(e):e+""}function q(e,t){do{const n=l(e,t);if(!H(n))return n;e=a(e)}while(null!==e)}const X=["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:Y,AriaPropNameToAttrNameMap:J}=(()=>{const e=r(null),t=r(null);return L.call(X,(n=>{const r=F.call(_.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(!H(t))return t;const n=ee.get(e);if(!H(n))return n;const r=te.get(e);if(!H(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=R.call(e,t);o+=n>=65&&n<=90?"-"+$(n+32):$(n)}return te.set(e,o),o}function re(e){return void 0===Object.getOwnPropertyDescriptor(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_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT: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),k.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}const be=new WeakMap;let ve=null;function Ce(e,t){const n=be.get(e);if(!H(n)){const e=n[t];if(!H(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function Ee(e,t){if(null===ve)return;const n=ve,o=function(e){let t=be.get(e);if(H(t)){const n=r(null);t=n,be.set(e,n)}return t}(e);let i=o[t];if(H(i))i=[],o[t]=i;else if(i[0]===n)return;-1===v.call(i,n)&&n.link(i)}class Me{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=ve;let n;ve=this;try{e()}catch(e){n=Object(e)}finally{if(ve=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);O.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){k.call(e,this),k.call(this.listeners,e)}}function ke(e,t){Ce(e.component,t)}function Se(e,t){Ee(e.component,t)}function Te(e){return`<${F.call(e.tagName)}>`}function xe(e,t){if(!d(t)&&H(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!I(n);)k.call(t,Te(n)),n=n.owner;return t.reverse().join("\n\t")}(e);i(t,"wcStack",{get:()=>n})}}function Ae(e,t,n){let r=`[LWC ${e}]: ${t}`;H(n)||(r=`${r}\n${function(e){const t=[];let n="";for(;!I(e.owner);)k.call(t,n+Te(e)),e=e.owner,n+="\t";return C.call(t,"\n")}(n)}`);try{throw new Error(r)}catch(t){console[e](t)}}function Ne(e,t){Ae("error",e,t)}function Oe(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Pe(e){return B(e)&&u.call(e,"__circular__")}const Le="undefined"!=typeof HTMLElement?HTMLElement:function(){},$e=Le.prototype;function Re(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:Re("offsetHeight")},offsetLeft:{readOnly:!0,error:Re("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Re("offsetTop")},offsetWidth:{readOnly:!0,error:Re("offsetWidth")},role:{attribute:"role"}});let _e,De=null;function Fe(e,t){return e!==De||t!==_e}function He(e,t){De=null,_e=void 0}function Ie(e,t){De=e,_e=t}const je=r(null);L.call(f(J),(e=>{const t=q($e,e);H(t)||(je[e]=t)})),L.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=q($e,e);H(t)||(je[e]=t)}));const{isArray:We}=Array,{prototype:Be,getPrototypeOf:Ve,create:Ke,defineProperty:Ge,isExtensible:ze,getOwnPropertyDescriptor:Ue,getOwnPropertyNames:qe,getOwnPropertySymbols:Xe,preventExtensions:Ye,hasOwnProperty:Je}=Object,{push:Qe,concat:Ze}=Array.prototype;function et(e){return void 0===e}function tt(e){return"function"==typeof e}const nt=new WeakMap;function rt(e,t){nt.set(e,t)}const ot=e=>nt.get(e)||e;class it{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(Je.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;et(n)||(e.get=this.wrapGetter(n)),et(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=Ue(n,t);if(!et(r)){const n=this.wrapDescriptor(r);Ge(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;Ze.call(qe(t),Xe(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;et(n)||Je.call(e,n)||Ge(e,n,Ke(null)),Ye(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=et(n)||Je.call(t,n)?[]:[n];return Qe.apply(r,qe(t)),Qe.apply(r,Xe(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!ze(e)&&(!!ze(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return Ve(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=Ue(n,t);if(et(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},Ge(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const st=new WeakMap,lt=new WeakMap,ct=new WeakMap,at=new WeakMap;class ut extends it{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=st.get(e);if(!et(t))return t;const n=this,r=function(){return n.wrapValue(e.call(ot(this)))};return st.set(e,r),ct.set(r,e),r}wrapSetter(e){const t=lt.get(e);if(!et(t))return t;const n=function(t){e.call(ot(this),ot(t))};return lt.set(e,n),at.set(n,e),n}unwrapDescriptor(e){if(Je.call(e,"value"))e.value=ot(e.value);else{const{set:t,get:n}=e;et(n)||(e.get=this.unwrapGetter(n)),et(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=ct.get(e);if(!et(t))return t;const n=this,r=function(){return ot(e.call(n.wrapValue(this)))};return st.set(r,e),ct.set(e,r),r}unwrapSetter(e){const t=at.get(e);if(!et(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return lt.set(r,e),at.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&&We(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(ze(e)){const{originalTarget:t}=this;if(Ye(t),ze(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!Je.call(r,t)||(Ge(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const dt=new WeakMap,ft=new WeakMap;class ht extends it{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=dt.get(e);if(!et(t))return t;const n=this,r=function(){return n.wrapValue(e.call(ot(this)))};return dt.set(e,r),r}wrapSetter(e){const t=ft.get(e);if(!et(t))return t;const n=function(e){};return ft.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 pt(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(We(e))return!0;const t=Ve(e);return t===Be||null===t||null===Ve(t)}const mt=(e,t)=>{},gt=(e,t)=>{};function wt(e){return We(e)?[]:{}}const yt=Symbol.for("@@lockerLiveValue"),bt=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=tt(t)?t:gt,this.valueObserved=tt(n)?n:mt,this.valueIsObservable=tt(r)?r:pt,this.tagPropertyKey=o}getProxy(e){const t=ot(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=ot(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return ot(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(et(t)){const n=new ut(this,e);t=new Proxy(wt(e),n),rt(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(et(t)){const n=new ht(this,e);t=new Proxy(wt(e),n),rt(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:Ee,valueMutated:Ce,tagPropertyKey:yt});function vt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new TypeError;if(!B(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=Cr(this);if(!Qn(t))return Se(t,e),n.call(t.elm)},set(t){const n=Cr(this);return t!==n.cmpProps[e]&&(n.cmpProps[e]=t,ke(n,e)),r.call(n.elm,t)}}}const Ct=function(){if(I(Jn))throw new ReferenceError("Illegal constructor");const e=Jn,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(p(n,r.prototype),e.component=this,1===arguments.length){const{callHook:t,setHook:n,getHook:r}=arguments[0];e.callHook=t,e.setHook=n,e.getHook=r}return this[yt]=void 0,vr(o,e),vr(n,e),1===e.renderMode?e.renderRoot=Et(e):e.renderRoot=n,this};function Et(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,vr(s,e),s}Ct.prototype={constructor:Ct,dispatchEvent(e){const t=Cr(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=Cr(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,sr(r,t),n)},removeEventListener(e,t,n){const r=Cr(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,sr(r,t),n)},hasAttribute(e){const t=Cr(this),{elm:n,renderer:{getAttribute:r}}=t;return!I(r(n,e))},hasAttributeNS(e,t){const n=Cr(this),{elm:r,renderer:{getAttribute:o}}=n;return!I(o(r,t,e))},removeAttribute(e){const t=Cr(this),{elm:n,renderer:{removeAttribute:r}}=t;Ie(n,e),r(n,e),He()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=Cr(this);Ie(n,t),r(n,t,e),He()},getAttribute(e){const t=Cr(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=Cr(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=Cr(this),{elm:r,renderer:{setAttribute:o}}=n;Ie(r,e),o(r,e,t),He()},setAttributeNS(e,t,n){const r=Cr(this),{elm:o,renderer:{setAttribute:i}}=r;Ie(o,t),i(o,t,n,e),He()},getBoundingClientRect(){const e=Cr(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=Cr(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=Cr(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return Cr(this).shadowRoot},get shadowRoot(){return null},get children(){const e=Cr(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=Cr(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=Cr(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=Cr(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=Cr(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=Cr(this);return e.renderer.getLastElementChild(e.elm)},render(){return Cr(this).def.template},toString(){return`[object ${Cr(this).def.name}]`}};const Mt=r(null),kt=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of kt)Mt[e]={value(t){const n=Cr(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};o(Ct.prototype,Mt);const St=r(null);for(const e in je)St[e]=vt(e,je[e]);function Tt(e){return{get(){const t=Cr(this);return Se(t,e),t.cmpFields[e]},set(t){const n=Cr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,ke(n,e))},enumerable:!0,configurable:!0}}function xt(e){return{get(){const t=Cr(this);if(!Qn(t))return Se(t,e),t.cmpProps[e]},set(t){const n=Cr(this);n.cmpProps[e]=t,ke(n,e)},enumerable:!0,configurable:!0}}o(Ct.prototype,St),i(Ct,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class At extends Me{constructor(e,t){super((()=>{W(this.debouncing)&&(this.debouncing=!0,me((()=>{if(j(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,j(e.isDirty)&&W(r)&&i>0&&mr(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function Nt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new Error;return{get(){return n.call(this)},set(t){const n=Cr(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];H(o)&&(o=n.oar[e]=new At(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function Ot(e){return{get(){const t=Cr(this);return Se(t,e),t.cmpFields[e]},set(t){const n=Cr(this),r=bt.getProxy(t);r!==n.cmpFields[e]&&(n.cmpFields[e]=r,ke(n,e))},enumerable:!0,configurable:!0}}function Pt(e){return{get(){const t=Cr(this);return Se(t,e),t.cmpFields[e]},set(t){const n=Cr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,ke(n,e))},enumerable:!0,configurable:!0}}const Lt=new Map;const $t={apiMethods:fe,apiFields:fe,apiFieldsConfig:fe,wiredMethods:fe,wiredFields:fe,observedFields:fe};const Rt=new Set;function _t(){return[]}Rt.add(_t);const Dt=r(null),Ft=r(null);function Ht(e){let t=Dt[e];return H(t)&&(t=Dt[e]=function(){const t=Cr(this),{getHook:n}=t;return n(t.component,e)}),t}function It(e){let t=Ft[e];return H(t)&&(t=Ft[e]=function(t){const n=Cr(this),{setHook:r}=n;t=bt.getReadOnlyProxy(t),r(n.component,e,t)}),t}function jt(e){return function(){const t=Cr(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,A.call(arguments))}}function Wt(e,t){return function(n,r,o){if(r===o)return;const i=e[n];H(i)?H(t)||t.apply(this,arguments):Fe(this,n)&&(this[i]=o)}}function Bt(e,t,n){let s;B(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:Ht(n),set:It(n),enumerable:!0,configurable:!0}}for(let e=0,t=n.length;e<t;e+=1){const t=n[e];u[t]={value:jt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:Wt(l,c)},i(s,"observedAttributes",{get:()=>[...a,...f(l)]}),o(s.prototype,u),s}const Vt=Bt(Le,c(je),[]);s(Vt),h(Vt.prototype);const Kt=new WeakMap;function Gt(e){const{shadowSupportMode:t,renderMode:i}=e,s=function(e){const t=Lt.get(e);return H(t)?$t: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 C=function(e){let t=a(e);if(I(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(Pe(t)){const e=Oe(t);t=e===t?Ct:e}return t}(e),E=C!==Ct?Ut(C):qt,M=Bt(E.bridge,f(l),f(u)),k=n(r(null),E.props,l),S=n(r(null),E.propsConfig,c),T=n(r(null),E.methods,u),x=n(r(null),E.wire,d,h);g=g||E.connectedCallback,w=w||E.disconnectedCallback,y=y||E.renderedCallback,b=b||E.errorCallback,v=v||E.render;let A=E.shadowSupportMode;H(t)||(A=t);let N=E.renderMode;H(i)||(N="light"===i?0:1);const O=function(e){return tr.get(e)}(e)||E.template,P=e.name||E.name;o(m,p);return{ctor:e,name:P,wire:x,props:k,propsConfig:S,methods:T,bridge:M,template:O,renderMode:N,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function zt(e){if(!B(e))return!1;if(e.prototype instanceof Ct)return!0;let t=e;do{if(Pe(t)){const e=Oe(t);if(e===t)return!0;t=e}if(t===Ct)return!0}while(!I(t)&&(t=a(t)));return!1}function Ut(e){let t=Kt.get(e);if(H(t)){if(Pe(e)){return t=Ut(Oe(e)),Kt.set(e,t),t}if(!zt(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=Gt(e),Kt.set(e,t)}return t}const qt={ctor:Ct,name:Ct.name,props:St,propsConfig:fe,methods:fe,renderMode:1,shadowSupportMode:"reset",wire:fe,bridge:Vt,template:_t,render:Ct.prototype.render};function Xt(e){return`${e}-host`}function Yt(e){return _n.h("style",{key:"style",attrs:{type:"text/css"}},[_n.t(e)])}function Jt(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(m(s))k.apply(r,Jt(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let c;1===n.renderMode?c=0===n.shadowMode:(H(o)&&(o=Zt(n)),c=I(o)||0===o.shadowMode),k.call(r,s(i,l,c))}}return r}function Qt(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return H(n)||0===n.length||(o=Jt(n,r,e)),o}function Zt(e){let t=e;for(;!I(t);){if(1===t.renderMode)return t;t=t.owner}return t}function en(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}function tn(e,t){const{renderMode:n,shadowMode:r,renderer:{ssr:o,insertStylesheet:i}}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)i(t[e]);else{if(o||e.hydrated)return E.call(t,Yt);{const n=function(e){const t=Zt(e);return I(t)||1!==t.shadowMode?t:null}(e),r=I(n)?void 0:n.shadowRoot;for(let e=0;e<t.length;e++)i(t[e],r)}}return null}function nn(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return H(i)?(i=class extends r{constructor(e){super(),B(e)&&e(this)}},o(e,i),i):i}function rn(e){const{type:t}=e;return 2===t||3===t}function on(e,t){return e.key===t.key&&e.sel===t.sel}function sn(e,t){return"input"===e&&("value"===t||"checked"===t)}function ln(e,t,n){const{props:r}=t.data;if(H(r))return;const o=I(e)?fe:e.data.props;if(o===r)return;const i=I(e),{elm:s,sel:l}=t,{getProperty:c,setProperty:a}=n;for(const e in r){const t=r[e];(i||t!==(sn(l,e)?c(s,e):o[e]))&&a(s,e,t)}}const cn=r(null);function an(e){if(null==e)return fe;e=K(e)?e:e+"";let t=cn[e];if(t)return t;t=r(null);let n,o=0;const i=e.length;for(n=0;n<i;n++)32===R.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),cn[e]=t,t}function un(e,t){const{elm:n,data:{on:r}}=e;if(H(r))return;const{addEventListener:o}=t;for(const e in r){o(n,e,r[e])}}function dn(e,t,n,r){var o;o=t,Tn.has(o)?function(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;)wn(l)?wn(c)?wn(m)?wn(g)?on(l,m)?(fn(l,m,r),l=e[++o],m=t[++i]):on(c,g)?(fn(c,g,r),c=e[--s],g=t[--p]):on(l,g)?(fn(l,g,r),En(l.elm,n,r.nextSibling(c.elm),r),l=e[++o],g=t[--p]):on(c,m)?(fn(c,m,r),En(m.elm,n,l.elm,r),c=e[--s],m=t[++i]):(void 0===u&&(u=xn(e,o,s)),d=u[m.key],H(d)?(hn(m,n,r,l.elm),m=t[++i]):(f=e[d],wn(f)&&(f.sel!==m.sel?hn(m,n,r,l.elm):(fn(f,m,r),w||(w=!0,e=[...e]),e[d]=void 0,En(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(!wn(e)&&o<a);h=wn(e)?e.elm:null,pn(t,n,r,h,i,p+1)}else gn(e,n,r,!0,o,s+1)}(e,t,n,r):function(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void pn(t,n,r,null);if(0===i)return void gn(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&&(wn(i)?wn(l)?(fn(i,l,r),s=l.elm):mn(i,n,r,!0):wn(l)&&(hn(l,n,r,s),s=l.elm))}}(e,t,n,r)}function fn(e,t,n){var r,o;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&Cn(t,n)}(e,t,n);break;case 4:t.elm=e.elm;break;case 2:!function(e,t,n){const r=t.elm=e.elm;kn(e,t,n),dn(e.children,t.children,r,n)}(e,t,null!==(r=t.data.renderer)&&void 0!==r?r:n);break;case 3:!function(e,t,n){const r=t.elm=e.elm,o=t.vm=e.vm;kn(e,t,n),H(o)||Sn(t,o);dn(e.children,t.children,r,n),H(o)||mr(o)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}}function hn(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);vn(s,o,r),En(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);vn(s,o,r),En(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);vn(l,o,r);const{renderMode:c,shadowMode:a}=o;s&&(1!==a&&0!==c||(l.$shadowStaticNode$=!0));En(l,t,n,r)}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,c=j(s)?Z:void 0,a=l(o,c);vn(a,i,r),function(e,t,n){const{owner:r}=t;if(bn(e,r,n),1===r.shadowMode){const{data:{context:n}}=t,{stylesheetToken:o}=r.context;H(n)||H(n.lwc)||"manual"!==n.lwc.dom||function(e){e.$domManual$=!0}(e),H(o)||yn(e,o)}}(a,e,r),e.elm=a,kn(null,e,r),En(a,t,n,r),pn(e.children,a,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:!function(e,t,n,r){const{sel:o,owner:i}=e,s=nn(o,r);let l;const c=new s((t=>{l=function(e,t,n){let r=Er(e);if(!H(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;if(bn(e,l,n),1===l.shadowMode){const{stylesheetToken:t}=l.context;H(t)||yn(e,t)}return r=br(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(vn(c,i,r),e.elm=c,e.vm=l,l)Sn(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");kn(null,e,r),En(c,t,n,r),l&&xr(l);pn(e.children,c,r,null),l&&function(e){Mr(e)}(l)}(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function pn(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];wn(i)&&hn(i,t,n,r)}}function mn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&Mn(i,t,n),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;gn(e.children,i,n,t);break}case 3:{const{vm:t}=e;H(t)||function(e){yr(e)}(t)}}}function gn(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];wn(i)&&mn(i,t,n,r)}}function wn(e){return null!=e}function yn(e,t){e.$shadowToken$=t}function bn(e,t,n){const r=en(t);if(!I(r)){const{getClassList:t}=n;t(e).add(r)}}function vn(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function Cn(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function En(e,t,n,r){r.insert(e,t,n)}function Mn(e,t,n){n.remove(e,t)}function kn(e,t,n){I(e)&&(un(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(H(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(H(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=I(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),c=an(o),a=an(i);let u;for(u in a)H(c[u])&&l.remove(u);for(u in c)H(a[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((I(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;K(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(H(r))return;const o=I(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&&(Ie(i,e),58===R.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===R.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):I(t)||H(t)?l(i,e):s(i,e,t),He())}}(e,t,n),ln(e,t,n)}function Sn(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(I(r))continue;let o="";rn(r)&&(o=(null===(n=r.data.attrs)||void 0===n?void 0:n.slot)||"");const s=i[o]=i[o]||[];k.call(s,r)}if(W(e.isDirty)){const t=f(o);if(t.length!==f(i).length)return void or(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(H(i[r])||o[r].length!==i[r].length)return void or(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 or(e)}}}(t,n),e.aChildren=n,e.children=he)}const Tn=new WeakMap;function xn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(wn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}const An=Symbol.iterator;function Nn(e,t,n=he){const r=Gn();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,owner:r}}function On(e,t,n,r=he){const o=Gn(),{key:i}=n;const s={type:3,sel:e,data:n,children:r,elm:undefined,key:i,ctor:t,owner:o,mode:"open",aChildren:undefined,vm:undefined};return function(e){k.call(Gn().velements,e)}(s),s}const Pn=new Map;let Ln=0;function $n(e){var t;return t=e,Tn.set(t,1),e}let Rn=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const _n=s({s:function(e,t,n,r){H(r)||H(r[e])||0===r[e].length||(n=r[e]);const o=Gn(),{renderMode:i,shadowMode:s}=o;return 0===i?($n(n),n):(1===s&&$n(n),Nn("slot",t,n))},h:Nn,c:On,i:function(e,t){const n=[];if($n(n),H(e)||null===e)return n;const r=e[An]();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)?k.apply(n,e):k.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];$n(n);for(let r=0;r<t;r+=1){const t=e[r];m(t)?k.apply(n,t):k.call(n,t)}return n},t:function(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:Gn()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=Gn();if(I(t))throw new Error;const n=t;return function(t){er(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:undefined,owner:Gn()}},dc:function(e,t,n,r=he){if(null==t)return null;if(!zt(t))throw new Error(`Invalid LWC Constructor ${U(t)} for custom element <${e}>.`);let o=Pn.get(t);return H(o)&&(o=Ln++,Pn.set(t,o)),On(e,t,Object.assign(Object.assign({},n),{key:`dc:${o}:${n.key}`}),r)},ti:function(e){return e>0&&!(j(e)||W(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:Gn()}},gid:function(e){const t=Gn();if(H(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?_.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=Gn();if(H(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return Rn(e)}});let Dn=!1,Fn=G;const Hn={enableProfiler(){Dn=!0},disableProfiler(){Dn=!1},attachDispatcher(e){Fn=e,this.enableProfiler()},detachDispatcher(){const e=Fn;return Fn=G,this.disableProfiler(),e}};function In(e,t){Dn&&Fn(e,0,t.tagName,t.idx,t.renderMode,t.shadowMode)}function jn(e,t){Dn&&Fn(e,1,t.tagName,t.idx,t.renderMode,t.shadowMode)}function Wn(e,t){Dn&&Fn(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 Bn(e,t){Dn&&Fn(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 Vn=!1,Kn=null;function Gn(){return Kn}function zn(e){Kn=e}function Un(e){return(t,...n)=>{const o=r(null);return function(){const{context:{hasScopedStyles:r,stylesheetToken:i},shadowMode:s,renderer:l}=Gn(),c=!H(i),a=1===s;let u=0;if(c&&r&&(u|=1),c&&a&&(u|=2),!H(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 qn=Un(((e,t)=>{const{createFragment:n}=t;return n(e)})),Xn=Un(((e,t)=>{const{createFragment:n,getFirstChild:r}=t;return r(n("<svg>"+e+"</svg>"))}));function Yn(e,t){const n=Vn,o=Kn;let i=[];return Lr(e,e.owner,(()=>{Kn=e,In(1,e)}),(()=>{const{component:n,context:o,cmpSlots:s,cmpTemplate:l,tro:c}=e;c.observe((()=>{if(t!==l){if(I(l)||Pr(e),c=t,!Rt.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: ${U(t)}.`);e.cmpTemplate=t,o.tplCache=r(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!H(t))for(let e=0;e<t.length;e++)if(j(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;H(g)||(w&&s(n).remove(Xt(g)),y&&l(n,Xt(g))),H(a)||0===a.length||(h=u),H(h)||(f&&(s(n).add(Xt(h)),p=!0),d&&(c(n,Xt(h),""),m=!0)),r.stylesheetToken=h,r.hasTokenInClass=p,r.hasTokenInAttribute=m}(e,t);const n=Qt(e,t);o.styleVNodes=0===n.length?null:tn(e,n)}var c;e.velements=[],Vn=!0,i=t.call(void 0,_n,n,s,o.tplCache);const{styleVNodes:a}=o;I(a)||P.apply(i,a)}))}),(()=>{Vn=n,Kn=o,jn(1,e)})),i}let Jn=null;function Qn(e){return Jn===e}function Zn(e,t,n){const{component:r,callHook:o,owner:i}=e;Lr(e,i,G,(()=>{o(r,t,n)}),G)}function er(e,t,n,r){const{callHook:o,owner:i}=e;Lr(e,i,G,(()=>{o(n,t,[r])}),G)}const tr=new Map;function nr(e){return new Me((()=>{const{isDirty:t}=e;W(t)&&(or(e),function(e){const{renderer:{ssr:t}}=e;if(j(t)||j(e.isScheduled))return;e.isScheduled=!0,0===Sr.length&&me(Tr);k.call(Sr,e)}(e))}))}function rr(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=Gn();let s,l=!1;return Lr(e,o,(()=>{zn(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{zn(i)})),l?Yn(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function or(e){e.isDirty=!0}const ir=new WeakMap;function sr(e,t){if(!B(t))throw new TypeError;let n=ir.get(t);return H(n)&&(n=function(n){er(e,t,void 0,n)},ir.set(t,n)),n}const lr=r(null),cr=["rendered","connected","disconnected"];function ar(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 ur=0;const dr=new WeakMap;function fr(e,t,n=[]){return t.apply(e,n)}function hr(e,t,n){e[t]=n}function pr(e,t){return e[t]}function mr(e){Mr(e)}function gr(e){const t=Cr(e);Wn(7,t),1===t.state&&wr(e),xr(t),Mr(t),Bn(7,t)}function wr(e){yr(Cr(e))}function yr(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){W(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=lr;t&&ar(e,t);Ar(e)&&function(e){const{wiredDisconnecting:t}=e.context;Lr(e,e,G,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),G)}(e);const{disconnectedCallback:n}=e.def;H(n)||(In(5,e),Zn(e,n),jn(5,e))}(e),Nr(e),function(e){const{aChildren:t}=e;Or(t)}(e)}}function br(e,t,n,o){const{mode:i,owner:s,tagName:l,hydrated:c}=o,a=Ut(t),u={elm:e,def:a,idx:ur++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,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:fr,setHook:hr,getHook:pr,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(;!I(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=I(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,n),u.tro=nr(u),function(e,t){const n=Jn;let r;In(0,e),Jn=e;try{const o=new t;if(Jn.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(jn(0,e),Jn=n,!H(r))throw xe(e,r),r}}(u,a.ctor),Ar(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=$r.get(i);if(!H(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=_r(e,t,s),c=s.dynamic.length>0;k.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!c?i():Promise.resolve().then(i)})),k.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function vr(e,t){dr.set(e,t)}function Cr(e){return dr.get(e)}function Er(e){return dr.get(e)}function Mr(e){if(j(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&Lr(e,e,(()=>{In(2,e)}),(()=>{dn(r,t,n,o)}),(()=>{jn(2,e)}));1===e.state&&kr(e)}(e,rr(e))}}function kr(e){const{def:{renderedCallback:t},renderer:{ssr:n}}=e;if(j(n))return;const{rendered:r}=lr;r&&ar(e,r),H(t)||(In(4,e),Zn(e,t),jn(4,e))}let Sr=[];function Tr(){Wn(8);const e=Sr.sort(((e,t)=>e.idx-t.idx));Sr=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{Mr(r)}catch(r){throw t+1<n&&(0===Sr.length&&me(Tr),P.apply(Sr,A.call(e,t+1))),Bn(8),r}}Bn(8)}function xr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=lr;n&&ar(e,n),Ar(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;H(r)||(In(3,e),Zn(e,r),jn(3,e))}function Ar(e){return c(e.def.wire).length>0}function Nr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!H(n)){const e=Er(n);H(e)||yr(e)}}}function Or(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!I(n)&&!H(n.elm))switch(n.type){case 2:Or(n.children);break;case 3:yr(Cr(n.elm));break}}}function Pr(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];I(o)||H(o.elm)||r(o.elm,n)}e.children=he,Nr(e),e.velements=he}function Lr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!H(i)){xe(e,i);const n=I(t)?void 0:function(e){let t=e;for(;!I(t);){if(!H(t.def.errorCallback))return t;t=t.owner}}(t);if(H(n))throw i;Pr(e),In(6,e);Zn(n,n.def.errorCallback,[i,i.wcStack]),jn(6,e)}}}const $r=new Map;class Rr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),o(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function _r(e,t,n){const{method:r,adapter:o,configCallback:s,dynamic:l}=n,c=H(r)?function(e,t){const{cmpFields:n}=e;return r=>{r!==e.cmpFields[t]&&(n[t]=r,ke(e,t))}}(e,t):function(e,t){return n=>{Lr(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}),Lr(e,e,G,(()=>{u=new o(c)}),G);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=new Me((()=>{!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=>{Lr(e,e,G,(()=>{u.update(t,a)}),G)}));return H(o.contextSchema)||function(e,t,n){const{adapter:r}=t,o=Fr(r);if(H(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:c}}=e;k.call(s,(()=>{const e=new Rr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){k.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 Dr=new Map;function Fr(e){return Dr.get(e)}function Hr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};$r.set(e,o)}function Ir(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};$r.set(e,o)}let jr=!1;function Wr(e){const t=rr(e);e.children=t;const{renderRoot:n,renderer:{getFirstChild:r}}=e;Vr(r(n),t,n,e),kr(e)}function Br(e,t,n){var r,o;let i;switch(t.type){case 0:i=function(e,t,n){var r;if(!zr(t,e,3,n))return Kr(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(!zr(t,e,8,n))return Kr(e,t,n);const{setProperty:o}=n;return o(e,"nodeValue",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!!zr(n,t,3,r)&&o(e,"nodeValue")===o(t,"nodeValue");if(8===o(e,"nodeType"))return!!zr(n,t,8,r)&&o(e,"nodeValue")===o(t,"nodeValue");if(!zr(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)&&(Ne(`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 Kr(e,t,n);return t.elm=e,e}(e,t,n);break;case 2:i=function(e,t,n){if(!zr(t,e,1,n)||!Ur(t,e,n))return Kr(e,t,n);t.elm=e;const{owner:r}=t,{context:o}=t.data,i=Boolean(!H(o)&&!H(o.lwc)&&"manual"===o.lwc.dom);if(i){const{data:{props:r}}=t,{getProperty:o}=n;H(r)||H(r.innerHTML)||o(e,"innerHTML")===r.innerHTML&&(t.data=Object.assign(Object.assign({},t.data),{props:ye(r,"innerHTML")}))}if(Gr(t,n),!i){const{getFirstChild:o}=n;Vr(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(!zr(t,e,1,n)||!Ur(t,e,n))return Kr(e,t,n);const{sel:r,mode:o,ctor:i,owner:s}=t,l=br(e,i,n,{mode:o,owner:s,tagName:r,hydrated:!0});if(t.elm=e,t.vm=l,Sn(t,l),Gr(t,n),xr(l),0!==l.renderMode){const{getFirstChild:r}=n;Vr(r(e),t.children,e,l)}return Wr(l),e}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}return n.nextSibling(i)}function Vr(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];I(r)||(o?(o=Br(o,r,s),i=r.elm):(jr=!0,hn(r,n,s,i),i=r.elm))}if(o){jr=!0;const{nextSibling:e}=s;do{const t=o;o=e(o),Mn(t,n,s)}while(o)}}function Kr(e,t,n){jr=!0;const{getProperty:r}=n,o=r(e,"parentNode");return hn(t,o,n,e),Mn(e,o,n),t.elm}function Gr(e,t){un(e,t),ln(null,e,t)}function zr(e,t,n,r){const{getProperty:o}=r;return o(t,"nodeType")===n}function Ur(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=en(o);a&&(H(i)?H(s)||(s=Object.assign(Object.assign({},s),{[a]:!0})):i=`${a} ${i}`);let u=!0;if(H(i)||String(i)===l(t,"className")){if(!H(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(H(r)||r===s){if(!H(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];H(c)?l=!1:c.startsWith(i)?s&&!c.endsWith("!important")&&(l=!1):l=!1}f(e).length>o.length&&(l=!1),C.call(t,";")}}else l=!1;return l}(e,t,n);return o&&i&&s}let qr=!1;const Xr=B(CSSStyleSheet.prototype.replaceSync)&&m(document.adoptedStyleSheets),Yr=Xr&&l(document.adoptedStyleSheets,"length").writable,Jr=!H(document.documentMode),Qr=new Map;function Zr(e){const t=document.createElement("style");return t.type="text/css",t.textContent=e,t}function eo(e,t,n){const r=function(e,t){const{element:n,usedElement:r}=t;return r?Jr?Zr(e):n.cloneNode(!0):(t.usedElement=!0,n)}(e,n);t.appendChild(r)}function to(e,t){let n=Qr.get(e);return H(n)&&(n={stylesheet:void 0,element:void 0,roots:void 0,global:!1,usedElement:!1},Qr.set(e,n)),t&&H(n.stylesheet)?n.stylesheet=function(e){const t=new CSSStyleSheet;return t.replaceSync(e),t}(e):!t&&H(n.element)&&(n.element=Zr(e)),n}function no(e,t){const n=to(e,Xr);let{roots:r}=n;if(H(r))r=n.roots=new WeakSet;else if(r.has(t))return;r.add(t),Xr?function(e,t,n){const{adoptedStyleSheets:r}=t,{stylesheet:o}=n;Yr?r.push(o):t.adoptedStyleSheets=[...r,o]}(0,t,n):eo(e,t,n)}let ro,oo,io;if(function(){if("undefined"==typeof customElements)return!1;try{const e=HTMLElement;class t extends e{}return customElements.define("lwc-test-"+Math.floor(1e6*Math.random()),t),new t,!0}catch(e){return!1}}())ro=customElements.get.bind(customElements),oo=customElements.define.bind(customElements),io=HTMLElement;else{const e=r(null),t=new WeakMap;oo=function(n,r){if(n!==F.call(n)||e[n])throw new TypeError("Invalid Registration");e[n]=r,t.set(r,n)},ro=function(t){return e[t]},io=function e(){if(!(this instanceof e))throw new TypeError("Invalid Invocation");const{constructor:n}=this,r=t.get(n);if(!r)throw new TypeError("Invalid Construction");const o=document.createElement(r);return p(o,n.prototype),o},io.prototype=HTMLElement.prototype}let so=!1;function lo(e){so=e}const co=Q.$isNativeShadowRootDefined$,ao=u.call(Element.prototype,"$shadowToken$");const uo={ssr:!1,isNativeShadowDefined:co,isSyntheticShadowDefined:ao,HTMLElementExported:io,isHydrating:function(){return so},insert:function(e,t,n){t.insertBefore(e,n)},remove:function(e,t){t.removeChild(e)},cloneNode:function(e,t){return e.cloneNode(t)},createFragment:function(e){return document.createRange().createContextualFragment(e).firstChild},createElement:function(e,t){return H(t)?document.createElement(e):document.createElementNS(t,e)},createText:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},nextSibling:function(e){return e.nextSibling},attachShadow:function(e,t){return so&&e.shadowRoot?e.shadowRoot:e.attachShadow(t)},getProperty:function(e,t){return e[t]},setProperty:function(e,t,n){e[t]=n},setText:function(e,t){e.nodeValue=t},getAttribute:function(e,t,n){return H(n)?e.getAttribute(t):e.getAttributeNS(n,t)},setAttribute:function(e,t,n,r){return H(r)?e.setAttribute(t,n):e.setAttributeNS(r,t,n)},removeAttribute:function(e,t,n){H(n)?e.removeAttribute(t):e.removeAttributeNS(n,t)},addEventListener:function(e,t,n,r){e.addEventListener(t,n,r)},removeEventListener:function(e,t,n,r){e.removeEventListener(t,n,r)},dispatchEvent:function(e,t){return e.dispatchEvent(t)},getClassList:function(e){return e.classList},setCSSStyleProperty:function(e,t,n,r){e.style.setProperty(t,n,r?"important":"")},getBoundingClientRect:function(e){return e.getBoundingClientRect()},querySelector:function(e,t){return e.querySelector(t)},querySelectorAll:function(e,t){return e.querySelectorAll(t)},getElementsByTagName:function(e,t){return e.getElementsByTagName(t)},getElementsByClassName:function(e,t){return e.getElementsByClassName(t)},getChildren:function(e){return e.children},getChildNodes:function(e){return e.childNodes},getFirstChild:function(e){return e.firstChild},getFirstElementChild:function(e){return e.firstElementChild},getLastChild:function(e){return e.lastChild},getLastElementChild:function(e){return e.lastElementChild},isConnected:function(e){return e.isConnected},insertStylesheet:function(e,t){H(t)?function(e){const t=to(e,!1);t.global||(t.global=!0,eo(e,document.head,t))}(e):no(e,t)},assertInstanceOfHTMLElement:function(e,n){t.invariant(e instanceof HTMLElement,n)},defineCustomElement:oo,getCustomElement:ro};function fo(e,t,n){const r=br(e,t,uo,{mode:"open",owner:null,tagName:e.tagName.toLowerCase(),hydrated:!0});for(const[t,r]of Object.entries(n))e[t]=r;return r}function ho(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(!B(t))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if(!V(n)||I(n))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${n}.`);if(Er(e))console.warn('"hydrateComponent" expects an element that is not hydrated.',e);else try{lo(!0);!function(e){jr=!1,xr(e),Wr(e),jr&&Ne("Hydration completed with errors.",e)}(fo(e,t,n)),lo(!1)}catch(r){console.error("Recovering from error while hydrating: ",r),function(e,t){if(e.shadowRoot){const t=e.shadowRoot;for(;!I(t.firstChild);)t.removeChild(t.firstChild)}if("light"===t.renderMode)for(;!I(e.firstChild);)e.removeChild(e.firstChild)}(e,t),fo(e,t,n),lo(!1),gr(e)}finally{lo(!1)}}const po=new WeakSet;function mo(e){const t=function(e){return Ut(e).bridge}(e);return class extends t{constructor(){super(),this.isConnected?(ho(this,e,{}),po.add(this)):br(this,e,uo,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){po.has(this)?po.delete(this):gr(this)}disconnectedCallback(){wr(this)}}}const go=Node,wo=new WeakMap,yo=new WeakMap;function bo(e,t){const n=t.get(e);return H(n)||n(e),e}const{appendChild:vo,insertBefore:Co,removeChild:Eo,replaceChild:Mo}=go.prototype;n(go.prototype,{appendChild(e){return bo(vo.call(this,e),wo)},insertBefore(e,t){return bo(Co.call(this,e,t),wo)},removeChild(e){return bo(Eo.call(this,e),yo)},replaceChild(e,t){const n=Mo.call(this,e,t);return bo(n,yo),bo(e,wo),n}});const ko=Node;const So=new Map;i(Ct,"CustomElementConstructor",{get(){return function(e){if(e===Ct)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let t=So.get(e);return H(t)&&(t=mo(e),So.set(e,t)),t}(this)}}),s(Ct),h(Ct.prototype),e.LightningElement=Ct,e.__unstable__ProfilerControl=Hn,e.api=function(){throw new Error},e.buildCustomElementConstructor=function(e){return e.CustomElementConstructor},e.createContextProvider=function(e){let t=Fr(e);if(!H(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){Dr.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((()=>{H(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},e.createElement=function(e,t){if(!V(t)||I(t))throw new TypeError(`"createElement" function expects an object as second parameter but received "${U(t)}".`);const n=t.is;if(!B(n))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const r=nn(e,uo);let o=!1;const i=new r((r=>{br(r,n,uo,{tagName:e,mode:"closed"!==t.mode?"open":"closed",owner:null}),wo.set(r,gr),yo.set(r,wr),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(!H(e)){const n=Er(e);H(n)||(t=n.def.ctor)}return t},e.getComponentDef=function(e){const t=Ut(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=ho,e.isComponentConstructor=zt,e.isNodeFromTemplate=function(e){if(W(e instanceof ko))return!1;if(e instanceof ShadowRoot)return!1;const t=e.getRootNode();return!!(t instanceof ShadowRoot&&W(u.call(a(t),"synthetic")))||ao&&!H(e.$shadowResolver$)},e.parseFragment=qn,e.parseSVGFragment=Xn,e.readonly=function(e){return bt.getReadOnlyProxy(e)},e.register=function(e){for(let t=0;t<cr.length;++t){const n=cr[t];if(n in e){let t=lr[n];H(t)&&(lr[n]=t=[]),k.call(t,e[n])}}},e.registerComponent=function(e,{tmpl:t}){return B(e)&&tr.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(!H(o))for(const e in o){const t=o[e];if(g[e]=t.config,w=l(n,e),t.config>0){if(H(w))throw new Error;w=Nt(e,w)}else w=H(w)||H(w.get)?xt(e):Nt(e,w);f[e]=w,i(n,e,w)}if(H(s)||L.call(s,(e=>{if(w=l(n,e),H(w))throw new Error;d[e]=w})),!H(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(H(w))throw new Error;h[e]=w,Hr(w,t,o,s)}else w=Pt(e),p[e]=w,Ir(w,t,o,s),i(n,e,w)}if(!H(a))for(const e in a)w=l(n,e),w=Ot(e),i(n,e,w);if(!H(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=l(n,t);const r=!H(o)&&t in o,i=!H(a)&&t in a;r||i||(m[t]=Tt(t))}return function(e,t){Lt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:h,wiredFields:p,observedFields:m}),e},e.registerTemplate=function(e){return Rt.add(e),i(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return H(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=H(e)?void 0:e.shadowAttribute}}),e},e.renderer=uo,e.sanitizeAttribute=function(e,t,n,r){return r},e.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(H(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(!H(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(qr,"Hooks are already overridden, only one definition is allowed."),qr=!0,n=e.sanitizeHtmlContent,Rn=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 bt.getProxy(e);throw new Error},e.unwrap=function(e){return bt.unwrapProxy(e)},e.wire=function(e,t){throw new Error},Object.defineProperty(e,"__esModule",{value:!0})}));
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).LWC={})}(this,(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:C,map:E,pop:M,push:S,reduce:k,reverse:T,shift:x,slice:A,sort:N,splice:O,unshift:P,forEach:L}=Array.prototype,{fromCharCode:$}=String,{charCodeAt:R,replace:_,slice:D,toLowerCase:F}=String.prototype;function H(e){return void 0===e}function I(e){return null===e}function j(e){return!0===e}function W(e){return!1===e}function B(e){return"function"==typeof e}function V(e){return"object"==typeof e}function K(e){return"string"==typeof e}function G(){}const z={}.toString;function U(e){return e&&e.toString?m(e)?C.call(E.call(e,U),","):e.toString():"object"==typeof e?z.call(e):e+""}function q(e,t){do{const n=l(e,t);if(!H(n))return n;e=a(e)}while(null!==e)}const X=["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:Y,AriaPropNameToAttrNameMap:J}=(()=>{const e=r(null),t=r(null);return L.call(X,(n=>{const r=F.call(_.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(!H(t))return t;const n=ee.get(e);if(!H(n))return n;const r=te.get(e);if(!H(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=R.call(e,t);o+=n>=65&&n<=90?"-"+$(n+32):$(n)}return te.set(e,o),o}function re(e){return void 0===Object.getOwnPropertyDescriptor(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_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT: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),S.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}const be=new WeakMap;let ve=null;function Ce(e,t){const n=be.get(e);if(!H(n)){const e=n[t];if(!H(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function Ee(e,t){if(null===ve)return;const n=ve,o=function(e){let t=be.get(e);if(H(t)){const n=r(null);t=n,be.set(e,n)}return t}(e);let i=o[t];if(H(i))i=[],o[t]=i;else if(i[0]===n)return;-1===v.call(i,n)&&n.link(i)}class Me{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=ve;let n;ve=this;try{e()}catch(e){n=Object(e)}finally{if(ve=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);O.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){S.call(e,this),S.call(this.listeners,e)}}function Se(e,t){Ce(e.component,t)}function ke(e,t){Ee(e.component,t)}function Te(e){return`<${F.call(e.tagName)}>`}function xe(e,t){if(!d(t)&&H(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!I(n);)S.call(t,Te(n)),n=n.owner;return t.reverse().join("\n\t")}(e);i(t,"wcStack",{get:()=>n})}}function Ae(e,t,n){let r=`[LWC ${e}]: ${t}`;H(n)||(r=`${r}\n${function(e){const t=[];let n="";for(;!I(e.owner);)S.call(t,n+Te(e)),e=e.owner,n+="\t";return C.call(t,"\n")}(n)}`);try{throw new Error(r)}catch(t){console[e](t)}}function Ne(e,t){Ae("error",e,t)}function Oe(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Pe(e){return B(e)&&u.call(e,"__circular__")}const Le="undefined"!=typeof HTMLElement?HTMLElement:function(){},$e=Le.prototype;function Re(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:Re("offsetHeight")},offsetLeft:{readOnly:!0,error:Re("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Re("offsetTop")},offsetWidth:{readOnly:!0,error:Re("offsetWidth")},role:{attribute:"role"}});let _e,De=null;function Fe(e,t){return e!==De||t!==_e}function He(e,t){De=null,_e=void 0}function Ie(e,t){De=e,_e=t}const je=r(null);L.call(f(J),(e=>{const t=q($e,e);H(t)||(je[e]=t)})),L.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=q($e,e);H(t)||(je[e]=t)}));const{isArray:We}=Array,{prototype:Be,getPrototypeOf:Ve,create:Ke,defineProperty:Ge,isExtensible:ze,getOwnPropertyDescriptor:Ue,getOwnPropertyNames:qe,getOwnPropertySymbols:Xe,preventExtensions:Ye,hasOwnProperty:Je}=Object,{push:Qe,concat:Ze}=Array.prototype;function et(e){return void 0===e}function tt(e){return"function"==typeof e}const nt=new WeakMap;function rt(e,t){nt.set(e,t)}const ot=e=>nt.get(e)||e;class it{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(Je.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;et(n)||(e.get=this.wrapGetter(n)),et(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=Ue(n,t);if(!et(r)){const n=this.wrapDescriptor(r);Ge(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;Ze.call(qe(t),Xe(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;et(n)||Je.call(e,n)||Ge(e,n,Ke(null)),Ye(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=et(n)||Je.call(t,n)?[]:[n];return Qe.apply(r,qe(t)),Qe.apply(r,Xe(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!ze(e)&&(!!ze(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return Ve(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=Ue(n,t);if(et(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},Ge(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const st=new WeakMap,lt=new WeakMap,ct=new WeakMap,at=new WeakMap;class ut extends it{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=st.get(e);if(!et(t))return t;const n=this,r=function(){return n.wrapValue(e.call(ot(this)))};return st.set(e,r),ct.set(r,e),r}wrapSetter(e){const t=lt.get(e);if(!et(t))return t;const n=function(t){e.call(ot(this),ot(t))};return lt.set(e,n),at.set(n,e),n}unwrapDescriptor(e){if(Je.call(e,"value"))e.value=ot(e.value);else{const{set:t,get:n}=e;et(n)||(e.get=this.unwrapGetter(n)),et(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=ct.get(e);if(!et(t))return t;const n=this,r=function(){return ot(e.call(n.wrapValue(this)))};return st.set(r,e),ct.set(e,r),r}unwrapSetter(e){const t=at.get(e);if(!et(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return lt.set(r,e),at.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&&We(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(ze(e)){const{originalTarget:t}=this;if(Ye(t),ze(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!Je.call(r,t)||(Ge(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const dt=new WeakMap,ft=new WeakMap;class ht extends it{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=dt.get(e);if(!et(t))return t;const n=this,r=function(){return n.wrapValue(e.call(ot(this)))};return dt.set(e,r),r}wrapSetter(e){const t=ft.get(e);if(!et(t))return t;const n=function(e){};return ft.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 pt(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(We(e))return!0;const t=Ve(e);return t===Be||null===t||null===Ve(t)}const mt=(e,t)=>{},gt=(e,t)=>{};function wt(e){return We(e)?[]:{}}const yt=Symbol.for("@@lockerLiveValue"),bt=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=tt(t)?t:gt,this.valueObserved=tt(n)?n:mt,this.valueIsObservable=tt(r)?r:pt,this.tagPropertyKey=o}getProxy(e){const t=ot(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=ot(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return ot(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(et(t)){const n=new ut(this,e);t=new Proxy(wt(e),n),rt(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(et(t)){const n=new ht(this,e);t=new Proxy(wt(e),n),rt(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:Ee,valueMutated:Ce,tagPropertyKey:yt});function vt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new TypeError;if(!B(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=vr(this);if(!Jn(t))return ke(t,e),n.call(t.elm)},set(t){const n=vr(this);return t!==n.cmpProps[e]&&(n.cmpProps[e]=t,Se(n,e)),r.call(n.elm,t)}}}const Ct=function(){if(I(Yn))throw new ReferenceError("Illegal constructor");const e=Yn,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(p(n,r.prototype),e.component=this,1===arguments.length){const{callHook:t,setHook:n,getHook:r}=arguments[0];e.callHook=t,e.setHook=n,e.getHook=r}return this[yt]=void 0,br(o,e),br(n,e),1===e.renderMode?e.renderRoot=Et(e):e.renderRoot=n,this};function Et(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,br(s,e),s}Ct.prototype={constructor:Ct,dispatchEvent(e){const t=vr(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=vr(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,ir(r,t),n)},removeEventListener(e,t,n){const r=vr(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,ir(r,t),n)},hasAttribute(e){const t=vr(this),{elm:n,renderer:{getAttribute:r}}=t;return!I(r(n,e))},hasAttributeNS(e,t){const n=vr(this),{elm:r,renderer:{getAttribute:o}}=n;return!I(o(r,t,e))},removeAttribute(e){const t=vr(this),{elm:n,renderer:{removeAttribute:r}}=t;Ie(n,e),r(n,e),He()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=vr(this);Ie(n,t),r(n,t,e),He()},getAttribute(e){const t=vr(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=vr(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=vr(this),{elm:r,renderer:{setAttribute:o}}=n;Ie(r,e),o(r,e,t),He()},setAttributeNS(e,t,n){const r=vr(this),{elm:o,renderer:{setAttribute:i}}=r;Ie(o,t),i(o,t,n,e),He()},getBoundingClientRect(){const e=vr(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=vr(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=vr(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return vr(this).shadowRoot},get shadowRoot(){return null},get children(){const e=vr(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=vr(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=vr(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=vr(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=vr(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=vr(this);return e.renderer.getLastElementChild(e.elm)},render(){return vr(this).def.template},toString(){return`[object ${vr(this).def.name}]`}};const Mt=r(null),St=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of St)Mt[e]={value(t){const n=vr(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};o(Ct.prototype,Mt);const kt=r(null);for(const e in je)kt[e]=vt(e,je[e]);function Tt(e){return{get(){const t=vr(this);return ke(t,e),t.cmpFields[e]},set(t){const n=vr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Se(n,e))},enumerable:!0,configurable:!0}}function xt(e){return{get(){const t=vr(this);if(!Jn(t))return ke(t,e),t.cmpProps[e]},set(t){const n=vr(this);n.cmpProps[e]=t,Se(n,e)},enumerable:!0,configurable:!0}}o(Ct.prototype,kt),i(Ct,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class At extends Me{constructor(e,t){super((()=>{W(this.debouncing)&&(this.debouncing=!0,me((()=>{if(j(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,j(e.isDirty)&&W(r)&&i>0&&pr(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function Nt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new Error;return{get(){return n.call(this)},set(t){const n=vr(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];H(o)&&(o=n.oar[e]=new At(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function Ot(e){return{get(){const t=vr(this);return ke(t,e),t.cmpFields[e]},set(t){const n=vr(this),r=bt.getProxy(t);r!==n.cmpFields[e]&&(n.cmpFields[e]=r,Se(n,e))},enumerable:!0,configurable:!0}}function Pt(e){return{get(){const t=vr(this);return ke(t,e),t.cmpFields[e]},set(t){const n=vr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Se(n,e))},enumerable:!0,configurable:!0}}const Lt=new Map;const $t={apiMethods:fe,apiFields:fe,apiFieldsConfig:fe,wiredMethods:fe,wiredFields:fe,observedFields:fe};const Rt=new Set;function _t(){return[]}Rt.add(_t);const Dt=r(null),Ft=r(null);function Ht(e){let t=Dt[e];return H(t)&&(t=Dt[e]=function(){const t=vr(this),{getHook:n}=t;return n(t.component,e)}),t}function It(e){let t=Ft[e];return H(t)&&(t=Ft[e]=function(t){const n=vr(this),{setHook:r}=n;t=bt.getReadOnlyProxy(t),r(n.component,e,t)}),t}function jt(e){return function(){const t=vr(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,A.call(arguments))}}function Wt(e,t){return function(n,r,o){if(r===o)return;const i=e[n];H(i)?H(t)||t.apply(this,arguments):Fe(this,n)&&(this[i]=o)}}function Bt(e,t,n){let s;B(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:Ht(n),set:It(n),enumerable:!0,configurable:!0}}for(let e=0,t=n.length;e<t;e+=1){const t=n[e];u[t]={value:jt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:Wt(l,c)},i(s,"observedAttributes",{get:()=>[...a,...f(l)]}),o(s.prototype,u),s}const Vt=Bt(Le,c(je),[]);s(Vt),h(Vt.prototype);const Kt=new WeakMap;function Gt(e){const{shadowSupportMode:t,renderMode:i}=e,s=function(e){const t=Lt.get(e);return H(t)?$t: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 C=function(e){let t=a(e);if(I(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(Pe(t)){const e=Oe(t);t=e===t?Ct:e}return t}(e),E=C!==Ct?Ut(C):qt,M=Bt(E.bridge,f(l),f(u)),S=n(r(null),E.props,l),k=n(r(null),E.propsConfig,c),T=n(r(null),E.methods,u),x=n(r(null),E.wire,d,h);g=g||E.connectedCallback,w=w||E.disconnectedCallback,y=y||E.renderedCallback,b=b||E.errorCallback,v=v||E.render;let A=E.shadowSupportMode;H(t)||(A=t);let N=E.renderMode;H(i)||(N="light"===i?0:1);const O=function(e){return er.get(e)}(e)||E.template,P=e.name||E.name;o(m,p);return{ctor:e,name:P,wire:x,props:S,propsConfig:k,methods:T,bridge:M,template:O,renderMode:N,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function zt(e){if(!B(e))return!1;if(e.prototype instanceof Ct)return!0;let t=e;do{if(Pe(t)){const e=Oe(t);if(e===t)return!0;t=e}if(t===Ct)return!0}while(!I(t)&&(t=a(t)));return!1}function Ut(e){let t=Kt.get(e);if(H(t)){if(Pe(e)){return t=Ut(Oe(e)),Kt.set(e,t),t}if(!zt(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=Gt(e),Kt.set(e,t)}return t}const qt={ctor:Ct,name:Ct.name,props:kt,propsConfig:fe,methods:fe,renderMode:1,shadowSupportMode:"reset",wire:fe,bridge:Vt,template:_t,render:Ct.prototype.render};function Xt(e){return`${e}-host`}function Yt(e){return Rn.h("style",{key:"style",attrs:{type:"text/css"}},[Rn.t(e)])}function Jt(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(m(s))S.apply(r,Jt(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let c;1===n.renderMode?c=0===n.shadowMode:(H(o)&&(o=Zt(n)),c=I(o)||0===o.shadowMode),S.call(r,s(i,l,c))}}return r}function Qt(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return H(n)||0===n.length||(o=Jt(n,r,e)),o}function Zt(e){let t=e;for(;!I(t);){if(1===t.renderMode)return t;t=t.owner}return t}function en(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}function tn(e,t){const{renderMode:n,shadowMode:r,renderer:{ssr:o,insertStylesheet:i}}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)i(t[e]);else{if(o||e.hydrated)return E.call(t,Yt);{const n=function(e){const t=Zt(e);return I(t)||1!==t.shadowMode?t:null}(e),r=I(n)?void 0:n.shadowRoot;for(let e=0;e<t.length;e++)i(t[e],r)}}return null}function nn(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return H(i)?(i=class extends r{constructor(e){super(),B(e)&&e(this)}},o(e,i),i):i}function rn(e){const{type:t}=e;return 2===t||3===t}function on(e,t){return e.key===t.key&&e.sel===t.sel}function sn(e,t){return"input"===e&&("value"===t||"checked"===t)}function ln(e,t,n){const{props:r}=t.data;if(H(r))return;const o=I(e)?fe:e.data.props;if(o===r)return;const i=I(e),{elm:s,sel:l}=t,{getProperty:c,setProperty:a}=n;for(const e in r){const t=r[e];(i||t!==(sn(l,e)?c(s,e):o[e]))&&a(s,e,t)}}const cn=r(null);function an(e){if(null==e)return fe;e=K(e)?e:e+"";let t=cn[e];if(t)return t;t=r(null);let n,o=0;const i=e.length;for(n=0;n<i;n++)32===R.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),cn[e]=t,t}function un(e,t){const{elm:n,data:{on:r}}=e;if(H(r))return;const{addEventListener:o}=t;for(const e in r){o(n,e,r[e])}}function dn(e,t,n,r){var o;o=t,kn.has(o)?function(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;)wn(l)?wn(c)?wn(m)?wn(g)?on(l,m)?(fn(l,m,r),l=e[++o],m=t[++i]):on(c,g)?(fn(c,g,r),c=e[--s],g=t[--p]):on(l,g)?(fn(l,g,r),vn(l.elm,n,r.nextSibling(c.elm),r),l=e[++o],g=t[--p]):on(c,m)?(fn(c,m,r),vn(m.elm,n,l.elm,r),c=e[--s],m=t[++i]):(void 0===u&&(u=Tn(e,o,s)),d=u[m.key],H(d)?(hn(m,n,r,l.elm),m=t[++i]):(f=e[d],wn(f)&&(f.sel!==m.sel?hn(m,n,r,l.elm):(fn(f,m,r),w||(w=!0,e=[...e]),e[d]=void 0,vn(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(!wn(e)&&o<a);h=wn(e)?e.elm:null,pn(t,n,r,h,i,p+1)}else gn(e,n,r,!0,o,s+1)}(e,t,n,r):function(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void pn(t,n,r,null);if(0===i)return void gn(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&&(wn(i)?wn(l)?(fn(i,l,r),s=l.elm):mn(i,n,r,!0):wn(l)&&(hn(l,n,r,s),s=l.elm))}}(e,t,n,r)}function fn(e,t,n){var r,o;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&bn(t,n)}(e,t,n);break;case 4:t.elm=e.elm;break;case 2:!function(e,t,n){const r=t.elm=e.elm;En(e,t,n),dn(e.children,t.children,r,n)}(e,t,null!==(r=t.data.renderer)&&void 0!==r?r:n);break;case 3:!function(e,t,n){const r=t.elm=e.elm,o=t.vm=e.vm;En(e,t,n),H(o)||Sn(t,o);dn(e.children,t.children,r,n),H(o)||pr(o)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}}function hn(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);yn(s,o,r),vn(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);yn(s,o,r),vn(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);yn(l,o,r);const{renderMode:c,shadowMode:a}=o;s&&(1!==a&&0!==c||(l.$shadowStaticNode$=!0));vn(l,t,n,r)}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,c=j(s)?Z:void 0,a=e.elm=l(o,c);yn(a,i,r),Mn(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),En(null,e,r),vn(a,t,n,r),pn(e.children,a,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:!function(e,t,n,r){const{sel:o,owner:i}=e,s=nn(o,r);let l;const c=new s((t=>{l=function(e,t,n){let r=Cr(e);if(!H(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;return r=yr(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(e.elm=c,e.vm=l,yn(c,i,r),Mn(c,i,r),l)Sn(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");En(null,e,r),vn(c,t,n,r),l&&Tr(l);pn(e.children,c,r,null),l&&function(e){Er(e)}(l)}(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function pn(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];wn(i)&&hn(i,t,n,r)}}function mn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&Cn(i,t,n),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;gn(e.children,i,n,t);break}case 3:{const{vm:t}=e;H(t)||function(e){wr(e)}(t)}}}function gn(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];wn(i)&&mn(i,t,n,r)}}function wn(e){return null!=e}function yn(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function bn(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function vn(e,t,n,r){r.insert(e,t,n)}function Cn(e,t,n){n.remove(e,t)}function En(e,t,n){I(e)&&(un(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(H(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(H(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=I(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),c=an(o),a=an(i);let u;for(u in a)H(c[u])&&l.remove(u);for(u in c)H(a[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((I(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;K(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(H(r))return;const o=I(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&&(Ie(i,e),58===R.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===R.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):I(t)||H(t)?l(i,e):s(i,e,t),He())}}(e,t,n),ln(e,t,n)}function Mn(e,t,n){const r=en(t);if(!I(r)){const{getClassList:t}=n;t(e).add(r)}const{stylesheetToken:o}=t.context;1!==t.shadowMode||H(o)||(e.$shadowToken$=o)}function Sn(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(I(r))continue;let o="";rn(r)&&(o=(null===(n=r.data.attrs)||void 0===n?void 0:n.slot)||"");const s=i[o]=i[o]||[];S.call(s,r)}if(W(e.isDirty)){const t=f(o);if(t.length!==f(i).length)return void rr(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(H(i[r])||o[r].length!==i[r].length)return void rr(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 rr(e)}}}(t,n),e.aChildren=n,e.children=he)}const kn=new WeakMap;function Tn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(wn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}const xn=Symbol.iterator;function An(e,t,n=he){const r=Kn();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,owner:r}}function Nn(e,t,n,r=he){const o=Kn(),{key:i}=n;const s={type:3,sel:e,data:n,children:r,elm:undefined,key:i,ctor:t,owner:o,mode:"open",aChildren:undefined,vm:undefined};return function(e){S.call(Kn().velements,e)}(s),s}const On=new Map;let Pn=0;function Ln(e){var t;return t=e,kn.set(t,1),e}let $n=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const Rn=s({s:function(e,t,n,r){H(r)||H(r[e])||0===r[e].length||(n=r[e]);const o=Kn(),{renderMode:i,shadowMode:s}=o;return 0===i?(Ln(n),n):(1===s&&Ln(n),An("slot",t,n))},h:An,c:Nn,i:function(e,t){const n=[];if(Ln(n),H(e)||null===e)return n;const r=e[xn]();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)?S.apply(n,e):S.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];Ln(n);for(let r=0;r<t;r+=1){const t=e[r];m(t)?S.apply(n,t):S.call(n,t)}return n},t:function(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:Kn()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=Kn();if(I(t))throw new Error;const n=t;return function(t){Zn(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:undefined,owner:Kn()}},dc:function(e,t,n,r=he){if(null==t)return null;if(!zt(t))throw new Error(`Invalid LWC Constructor ${U(t)} for custom element <${e}>.`);let o=On.get(t);return H(o)&&(o=Pn++,On.set(t,o)),Nn(e,t,Object.assign(Object.assign({},n),{key:`dc:${o}:${n.key}`}),r)},ti:function(e){return e>0&&!(j(e)||W(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:Kn()}},gid:function(e){const t=Kn();if(H(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?_.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=Kn();if(H(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return $n(e)}});let _n=!1,Dn=G;const Fn={enableProfiler(){_n=!0},disableProfiler(){_n=!1},attachDispatcher(e){Dn=e,this.enableProfiler()},detachDispatcher(){const e=Dn;return Dn=G,this.disableProfiler(),e}};function Hn(e,t){_n&&Dn(e,0,t.tagName,t.idx,t.renderMode,t.shadowMode)}function In(e,t){_n&&Dn(e,1,t.tagName,t.idx,t.renderMode,t.shadowMode)}function jn(e,t){_n&&Dn(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 Wn(e,t){_n&&Dn(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 Bn=!1,Vn=null;function Kn(){return Vn}function Gn(e){Vn=e}function zn(e){return(t,...n)=>{const o=r(null);return function(){const{context:{hasScopedStyles:r,stylesheetToken:i},shadowMode:s,renderer:l}=Kn(),c=!H(i),a=1===s;let u=0;if(c&&r&&(u|=1),c&&a&&(u|=2),!H(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 Un=zn(((e,t)=>{const{createFragment:n}=t;return n(e)})),qn=zn(((e,t)=>{const{createFragment:n,getFirstChild:r}=t;return r(n("<svg>"+e+"</svg>"))}));function Xn(e,t){const n=Bn,o=Vn;let i=[];return Pr(e,e.owner,(()=>{Vn=e,Hn(1,e)}),(()=>{const{component:n,context:o,cmpSlots:s,cmpTemplate:l,tro:c}=e;c.observe((()=>{if(t!==l){if(I(l)||Or(e),c=t,!Rt.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: ${U(t)}.`);e.cmpTemplate=t,o.tplCache=r(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!H(t))for(let e=0;e<t.length;e++)if(j(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;H(g)||(w&&s(n).remove(Xt(g)),y&&l(n,Xt(g))),H(a)||0===a.length||(h=u),H(h)||(f&&(s(n).add(Xt(h)),p=!0),d&&(c(n,Xt(h),""),m=!0)),r.stylesheetToken=h,r.hasTokenInClass=p,r.hasTokenInAttribute=m}(e,t);const n=Qt(e,t);o.styleVNodes=0===n.length?null:tn(e,n)}var c;e.velements=[],Bn=!0,i=t.call(void 0,Rn,n,s,o.tplCache);const{styleVNodes:a}=o;I(a)||P.apply(i,a)}))}),(()=>{Bn=n,Vn=o,In(1,e)})),i}let Yn=null;function Jn(e){return Yn===e}function Qn(e,t,n){const{component:r,callHook:o,owner:i}=e;Pr(e,i,G,(()=>{o(r,t,n)}),G)}function Zn(e,t,n,r){const{callHook:o,owner:i}=e;Pr(e,i,G,(()=>{o(n,t,[r])}),G)}const er=new Map;function tr(e){return new Me((()=>{const{isDirty:t}=e;W(t)&&(rr(e),function(e){const{renderer:{ssr:t}}=e;if(j(t)||j(e.isScheduled))return;e.isScheduled=!0,0===Sr.length&&me(kr);S.call(Sr,e)}(e))}))}function nr(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=Kn();let s,l=!1;return Pr(e,o,(()=>{Gn(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{Gn(i)})),l?Xn(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function rr(e){e.isDirty=!0}const or=new WeakMap;function ir(e,t){if(!B(t))throw new TypeError;let n=or.get(t);return H(n)&&(n=function(n){Zn(e,t,void 0,n)},or.set(t,n)),n}const sr=r(null),lr=["rendered","connected","disconnected"];function cr(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 ar=0;const ur=new WeakMap;function dr(e,t,n=[]){return t.apply(e,n)}function fr(e,t,n){e[t]=n}function hr(e,t){return e[t]}function pr(e){Er(e)}function mr(e){const t=vr(e);jn(7,t),1===t.state&&gr(e),Tr(t),Er(t),Wn(7,t)}function gr(e){wr(vr(e))}function wr(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){W(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=sr;t&&cr(e,t);xr(e)&&function(e){const{wiredDisconnecting:t}=e.context;Pr(e,e,G,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),G)}(e);const{disconnectedCallback:n}=e.def;H(n)||(Hn(5,e),Qn(e,n),In(5,e))}(e),Ar(e),function(e){const{aChildren:t}=e;Nr(t)}(e)}}function yr(e,t,n,o){const{mode:i,owner:s,tagName:l,hydrated:c}=o,a=Ut(t),u={elm:e,def:a,idx:ar++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,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:dr,setHook:fr,getHook:hr,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(;!I(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=I(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,n),u.tro=tr(u),function(e,t){const n=Yn;let r;Hn(0,e),Yn=e;try{const o=new t;if(Yn.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(In(0,e),Yn=n,!H(r))throw xe(e,r),r}}(u,a.ctor),xr(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=Lr.get(i);if(!H(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=Rr(e,t,s),c=s.dynamic.length>0;S.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!c?i():Promise.resolve().then(i)})),S.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function br(e,t){ur.set(e,t)}function vr(e){return ur.get(e)}function Cr(e){return ur.get(e)}function Er(e){if(j(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&Pr(e,e,(()=>{Hn(2,e)}),(()=>{dn(r,t,n,o)}),(()=>{In(2,e)}));1===e.state&&Mr(e)}(e,nr(e))}}function Mr(e){const{def:{renderedCallback:t},renderer:{ssr:n}}=e;if(j(n))return;const{rendered:r}=sr;r&&cr(e,r),H(t)||(Hn(4,e),Qn(e,t),In(4,e))}let Sr=[];function kr(){jn(8);const e=Sr.sort(((e,t)=>e.idx-t.idx));Sr=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{Er(r)}catch(r){throw t+1<n&&(0===Sr.length&&me(kr),P.apply(Sr,A.call(e,t+1))),Wn(8),r}}Wn(8)}function Tr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=sr;n&&cr(e,n),xr(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;H(r)||(Hn(3,e),Qn(e,r),In(3,e))}function xr(e){return c(e.def.wire).length>0}function Ar(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!H(n)){const e=Cr(n);H(e)||wr(e)}}}function Nr(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!I(n)&&!H(n.elm))switch(n.type){case 2:Nr(n.children);break;case 3:wr(vr(n.elm));break}}}function Or(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];I(o)||H(o.elm)||r(o.elm,n)}e.children=he,Ar(e),e.velements=he}function Pr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!H(i)){xe(e,i);const n=I(t)?void 0:function(e){let t=e;for(;!I(t);){if(!H(t.def.errorCallback))return t;t=t.owner}}(t);if(H(n))throw i;Or(e),Hn(6,e);Qn(n,n.def.errorCallback,[i,i.wcStack]),In(6,e)}}}const Lr=new Map;class $r extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),o(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function Rr(e,t,n){const{method:r,adapter:o,configCallback:s,dynamic:l}=n,c=H(r)?function(e,t){const{cmpFields:n}=e;return r=>{r!==e.cmpFields[t]&&(n[t]=r,Se(e,t))}}(e,t):function(e,t){return n=>{Pr(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}),Pr(e,e,G,(()=>{u=new o(c)}),G);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=new Me((()=>{!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=>{Pr(e,e,G,(()=>{u.update(t,a)}),G)}));return H(o.contextSchema)||function(e,t,n){const{adapter:r}=t,o=Dr(r);if(H(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:c}}=e;S.call(s,(()=>{const e=new $r(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){S.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 _r=new Map;function Dr(e){return _r.get(e)}function Fr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};Lr.set(e,o)}function Hr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};Lr.set(e,o)}let Ir=!1;function jr(e){const t=nr(e);e.children=t;const{renderRoot:n,renderer:{getFirstChild:r}}=e;Br(r(n),t,n,e),Mr(e)}function Wr(e,t,n){var r,o;let i;switch(t.type){case 0:i=function(e,t,n){var r;if(!Gr(t,e,3,n))return Vr(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(!Gr(t,e,8,n))return Vr(e,t,n);const{setProperty:o}=n;return o(e,"nodeValue",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!!Gr(n,t,3,r)&&o(e,"nodeValue")===o(t,"nodeValue");if(8===o(e,"nodeType"))return!!Gr(n,t,8,r)&&o(e,"nodeValue")===o(t,"nodeValue");if(!Gr(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)&&(Ne(`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 Vr(e,t,n);return t.elm=e,e}(e,t,n);break;case 2:i=function(e,t,n){if(!Gr(t,e,1,n)||!zr(t,e,n))return Vr(e,t,n);t.elm=e;const{owner:r}=t,{context:o}=t.data,i=Boolean(!H(o)&&!H(o.lwc)&&"manual"===o.lwc.dom);if(i){const{data:{props:r}}=t,{getProperty:o}=n;H(r)||H(r.innerHTML)||o(e,"innerHTML")===r.innerHTML&&(t.data=Object.assign(Object.assign({},t.data),{props:ye(r,"innerHTML")}))}if(Kr(t,n),!i){const{getFirstChild:o}=n;Br(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(!Gr(t,e,1,n)||!zr(t,e,n))return Vr(e,t,n);const{sel:r,mode:o,ctor:i,owner:s}=t,l=yr(e,i,n,{mode:o,owner:s,tagName:r,hydrated:!0});if(t.elm=e,t.vm=l,Sn(t,l),Kr(t,n),Tr(l),0!==l.renderMode){const{getFirstChild:r}=n;Br(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)}function Br(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];I(r)||(o?(o=Wr(o,r,s),i=r.elm):(Ir=!0,hn(r,n,s,i),i=r.elm))}if(o){Ir=!0;const{nextSibling:e}=s;do{const t=o;o=e(o),Cn(t,n,s)}while(o)}}function Vr(e,t,n){Ir=!0;const{getProperty:r}=n,o=r(e,"parentNode");return hn(t,o,n,e),Cn(e,o,n),t.elm}function Kr(e,t){un(e,t),ln(null,e,t)}function Gr(e,t,n,r){const{getProperty:o}=r;return o(t,"nodeType")===n}function zr(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=en(o);a&&(H(i)?H(s)||(s=Object.assign(Object.assign({},s),{[a]:!0})):i=`${a} ${i}`);let u=!0;if(H(i)||String(i)===l(t,"className")){if(!H(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(H(r)||r===s){if(!H(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];H(c)?l=!1:c.startsWith(i)?s&&!c.endsWith("!important")&&(l=!1):l=!1}f(e).length>o.length&&(l=!1),C.call(t,";")}}else l=!1;return l}(e,t,n);return o&&i&&s}let Ur=!1;const qr=B(CSSStyleSheet.prototype.replaceSync)&&m(document.adoptedStyleSheets),Xr=qr&&l(document.adoptedStyleSheets,"length").writable,Yr=!H(document.documentMode),Jr=new Map;function Qr(e){const t=document.createElement("style");return t.type="text/css",t.textContent=e,t}function Zr(e,t,n){const r=function(e,t){const{element:n,usedElement:r}=t;return r?Yr?Qr(e):n.cloneNode(!0):(t.usedElement=!0,n)}(e,n);t.appendChild(r)}function eo(e,t){let n=Jr.get(e);return H(n)&&(n={stylesheet:void 0,element:void 0,roots:void 0,global:!1,usedElement:!1},Jr.set(e,n)),t&&H(n.stylesheet)?n.stylesheet=function(e){const t=new CSSStyleSheet;return t.replaceSync(e),t}(e):!t&&H(n.element)&&(n.element=Qr(e)),n}function to(e,t){const n=eo(e,qr);let{roots:r}=n;if(H(r))r=n.roots=new WeakSet;else if(r.has(t))return;r.add(t),qr?function(e,t,n){const{adoptedStyleSheets:r}=t,{stylesheet:o}=n;Xr?r.push(o):t.adoptedStyleSheets=[...r,o]}(0,t,n):Zr(e,t,n)}let no,ro,oo;if(function(){if("undefined"==typeof customElements)return!1;try{const e=HTMLElement;class t extends e{}return customElements.define("lwc-test-"+Math.floor(1e6*Math.random()),t),new t,!0}catch(e){return!1}}())no=customElements.get.bind(customElements),ro=customElements.define.bind(customElements),oo=HTMLElement;else{const e=r(null),t=new WeakMap;ro=function(n,r){if(n!==F.call(n)||e[n])throw new TypeError("Invalid Registration");e[n]=r,t.set(r,n)},no=function(t){return e[t]},oo=function e(){if(!(this instanceof e))throw new TypeError("Invalid Invocation");const{constructor:n}=this,r=t.get(n);if(!r)throw new TypeError("Invalid Construction");const o=document.createElement(r);return p(o,n.prototype),o},oo.prototype=HTMLElement.prototype}let io=!1;function so(e){io=e}const lo=Q.$isNativeShadowRootDefined$,co=u.call(Element.prototype,"$shadowToken$");const ao={ssr:!1,isNativeShadowDefined:lo,isSyntheticShadowDefined:co,HTMLElementExported:oo,isHydrating:function(){return io},insert:function(e,t,n){t.insertBefore(e,n)},remove:function(e,t){t.removeChild(e)},cloneNode:function(e,t){return e.cloneNode(t)},createFragment:function(e){return document.createRange().createContextualFragment(e).firstChild},createElement:function(e,t){return H(t)?document.createElement(e):document.createElementNS(t,e)},createText:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},nextSibling:function(e){return e.nextSibling},attachShadow:function(e,t){return io&&e.shadowRoot?e.shadowRoot:e.attachShadow(t)},getProperty:function(e,t){return e[t]},setProperty:function(e,t,n){e[t]=n},setText:function(e,t){e.nodeValue=t},getAttribute:function(e,t,n){return H(n)?e.getAttribute(t):e.getAttributeNS(n,t)},setAttribute:function(e,t,n,r){return H(r)?e.setAttribute(t,n):e.setAttributeNS(r,t,n)},removeAttribute:function(e,t,n){H(n)?e.removeAttribute(t):e.removeAttributeNS(n,t)},addEventListener:function(e,t,n,r){e.addEventListener(t,n,r)},removeEventListener:function(e,t,n,r){e.removeEventListener(t,n,r)},dispatchEvent:function(e,t){return e.dispatchEvent(t)},getClassList:function(e){return e.classList},setCSSStyleProperty:function(e,t,n,r){e.style.setProperty(t,n,r?"important":"")},getBoundingClientRect:function(e){return e.getBoundingClientRect()},querySelector:function(e,t){return e.querySelector(t)},querySelectorAll:function(e,t){return e.querySelectorAll(t)},getElementsByTagName:function(e,t){return e.getElementsByTagName(t)},getElementsByClassName:function(e,t){return e.getElementsByClassName(t)},getChildren:function(e){return e.children},getChildNodes:function(e){return e.childNodes},getFirstChild:function(e){return e.firstChild},getFirstElementChild:function(e){return e.firstElementChild},getLastChild:function(e){return e.lastChild},getLastElementChild:function(e){return e.lastElementChild},isConnected:function(e){return e.isConnected},insertStylesheet:function(e,t){H(t)?function(e){const t=eo(e,!1);t.global||(t.global=!0,Zr(e,document.head,t))}(e):to(e,t)},assertInstanceOfHTMLElement:function(e,n){t.invariant(e instanceof HTMLElement,n)},defineCustomElement:ro,getCustomElement:no};function uo(e,t,n){const r=yr(e,t,ao,{mode:"open",owner:null,tagName:e.tagName.toLowerCase(),hydrated:!0});for(const[t,r]of Object.entries(n))e[t]=r;return r}function fo(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(!B(t))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if(!V(n)||I(n))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${n}.`);if(Cr(e))console.warn('"hydrateComponent" expects an element that is not hydrated.',e);else try{so(!0);!function(e){Ir=!1,Tr(e),jr(e),Ir&&Ne("Hydration completed with errors.",e)}(uo(e,t,n)),so(!1)}catch(r){console.error("Recovering from error while hydrating: ",r),function(e,t){if(e.shadowRoot){const t=e.shadowRoot;for(;!I(t.firstChild);)t.removeChild(t.firstChild)}if("light"===t.renderMode)for(;!I(e.firstChild);)e.removeChild(e.firstChild)}(e,t),uo(e,t,n),so(!1),mr(e)}finally{so(!1)}}const ho=new WeakSet;function po(e){const t=function(e){return Ut(e).bridge}(e);return class extends t{constructor(){super(),this.isConnected?(fo(this,e,{}),ho.add(this)):yr(this,e,ao,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){ho.has(this)?ho.delete(this):mr(this)}disconnectedCallback(){gr(this)}}}const mo=Node,go=new WeakMap,wo=new WeakMap;function yo(e,t){const n=t.get(e);return H(n)||n(e),e}const{appendChild:bo,insertBefore:vo,removeChild:Co,replaceChild:Eo}=mo.prototype;n(mo.prototype,{appendChild(e){return yo(bo.call(this,e),go)},insertBefore(e,t){return yo(vo.call(this,e,t),go)},removeChild(e){return yo(Co.call(this,e),wo)},replaceChild(e,t){const n=Eo.call(this,e,t);return yo(n,wo),yo(e,go),n}});const Mo=Node;const So=new Map;i(Ct,"CustomElementConstructor",{get(){return function(e){if(e===Ct)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let t=So.get(e);return H(t)&&(t=po(e),So.set(e,t)),t}(this)}}),s(Ct),h(Ct.prototype),e.LightningElement=Ct,e.__unstable__ProfilerControl=Fn,e.api=function(){throw new Error},e.buildCustomElementConstructor=function(e){return e.CustomElementConstructor},e.createContextProvider=function(e){let t=Dr(e);if(!H(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){_r.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((()=>{H(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},e.createElement=function(e,t){if(!V(t)||I(t))throw new TypeError(`"createElement" function expects an object as second parameter but received "${U(t)}".`);const n=t.is;if(!B(n))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const r=nn(e,ao);let o=!1;const i=new r((r=>{yr(r,n,ao,{tagName:e,mode:"closed"!==t.mode?"open":"closed",owner:null}),go.set(r,mr),wo.set(r,gr),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(!H(e)){const n=Cr(e);H(n)||(t=n.def.ctor)}return t},e.getComponentDef=function(e){const t=Ut(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=fo,e.isComponentConstructor=zt,e.isNodeFromTemplate=function(e){if(W(e instanceof Mo))return!1;if(e instanceof ShadowRoot)return!1;const t=e.getRootNode();return!!(t instanceof ShadowRoot&&W(u.call(a(t),"synthetic")))||co&&!H(e.$shadowResolver$)},e.parseFragment=Un,e.parseSVGFragment=qn,e.readonly=function(e){return bt.getReadOnlyProxy(e)},e.register=function(e){for(let t=0;t<lr.length;++t){const n=lr[t];if(n in e){let t=sr[n];H(t)&&(sr[n]=t=[]),S.call(t,e[n])}}},e.registerComponent=function(e,{tmpl:t}){return B(e)&&er.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(!H(o))for(const e in o){const t=o[e];if(g[e]=t.config,w=l(n,e),t.config>0){if(H(w))throw new Error;w=Nt(e,w)}else w=H(w)||H(w.get)?xt(e):Nt(e,w);f[e]=w,i(n,e,w)}if(H(s)||L.call(s,(e=>{if(w=l(n,e),H(w))throw new Error;d[e]=w})),!H(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(H(w))throw new Error;h[e]=w,Fr(w,t,o,s)}else w=Pt(e),p[e]=w,Hr(w,t,o,s),i(n,e,w)}if(!H(a))for(const e in a)w=l(n,e),w=Ot(e),i(n,e,w);if(!H(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=l(n,t);const r=!H(o)&&t in o,i=!H(a)&&t in a;r||i||(m[t]=Tt(t))}return function(e,t){Lt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:h,wiredFields:p,observedFields:m}),e},e.registerTemplate=function(e){return Rt.add(e),i(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return H(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=H(e)?void 0:e.shadowAttribute}}),e},e.renderer=ao,e.sanitizeAttribute=function(e,t,n,r){return r},e.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(H(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(!H(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(Ur,"Hooks are already overridden, only one definition is allowed."),Ur=!0,n=e.sanitizeHtmlContent,$n=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 bt.getProxy(e);throw new Error},e.unwrap=function(e){return bt.unwrapProxy(e)},e.wire=function(e,t){throw new Error},Object.defineProperty(e,"__esModule",{value:!0})}));
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);
|
|
295
295
|
return attributeName;
|
|
296
296
|
}
|
|
297
|
-
/** version: 2.
|
|
297
|
+
/** version: 2.21.1 */
|
|
298
298
|
|
|
299
299
|
/*
|
|
300
300
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -2814,10 +2814,10 @@
|
|
|
2814
2814
|
const { sel, owner, data: { svg }, } = vnode;
|
|
2815
2815
|
const { createElement } = renderer;
|
|
2816
2816
|
const namespace = isTrue(svg) ? SVG_NAMESPACE : undefined;
|
|
2817
|
-
const elm = createElement(sel, namespace);
|
|
2817
|
+
const elm = (vnode.elm = createElement(sel, namespace));
|
|
2818
2818
|
linkNodeToShadow(elm, owner, renderer);
|
|
2819
|
-
|
|
2820
|
-
|
|
2819
|
+
applyStyleScoping(elm, owner, renderer);
|
|
2820
|
+
applyDomManual(elm, vnode);
|
|
2821
2821
|
patchElementPropsAndAttrs$1(null, vnode, renderer);
|
|
2822
2822
|
insertNode(elm, parent, anchor, renderer);
|
|
2823
2823
|
mountVNodes(vnode.children, elm, renderer, null);
|
|
@@ -2855,9 +2855,10 @@
|
|
|
2855
2855
|
// the custom element from the registry is expecting an upgrade callback
|
|
2856
2856
|
vm = createViewModelHook(elm, vnode, renderer);
|
|
2857
2857
|
});
|
|
2858
|
-
linkNodeToShadow(elm, owner, renderer);
|
|
2859
2858
|
vnode.elm = elm;
|
|
2860
2859
|
vnode.vm = vm;
|
|
2860
|
+
linkNodeToShadow(elm, owner, renderer);
|
|
2861
|
+
applyStyleScoping(elm, owner, renderer);
|
|
2861
2862
|
if (vm) {
|
|
2862
2863
|
allocateChildren(vnode, vm);
|
|
2863
2864
|
}
|
|
@@ -2938,22 +2939,6 @@
|
|
|
2938
2939
|
function isVNode(vnode) {
|
|
2939
2940
|
return vnode != null;
|
|
2940
2941
|
}
|
|
2941
|
-
function observeElementChildNodes(elm) {
|
|
2942
|
-
elm.$domManual$ = true;
|
|
2943
|
-
}
|
|
2944
|
-
function setElementShadowToken(elm, token) {
|
|
2945
|
-
elm.$shadowToken$ = token;
|
|
2946
|
-
}
|
|
2947
|
-
// Set the scope token class for *.scoped.css styles
|
|
2948
|
-
function setScopeTokenClassIfNecessary(elm, owner, renderer) {
|
|
2949
|
-
const token = getScopeTokenClass(owner);
|
|
2950
|
-
if (!isNull(token)) {
|
|
2951
|
-
const { getClassList } = renderer;
|
|
2952
|
-
// TODO [#2762]: this dot notation with add is probably problematic
|
|
2953
|
-
// probably we should have a renderer api for just the add operation
|
|
2954
|
-
getClassList(elm).add(token);
|
|
2955
|
-
}
|
|
2956
|
-
}
|
|
2957
2942
|
function linkNodeToShadow(elm, owner, renderer) {
|
|
2958
2943
|
const { renderRoot, renderMode, shadowMode } = owner;
|
|
2959
2944
|
const { isSyntheticShadowDefined } = renderer;
|
|
@@ -2988,23 +2973,26 @@
|
|
|
2988
2973
|
patchAttributes(oldVnode, vnode, renderer);
|
|
2989
2974
|
patchProps(oldVnode, vnode, renderer);
|
|
2990
2975
|
}
|
|
2991
|
-
function
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
if (
|
|
2995
|
-
const {
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
2976
|
+
function applyStyleScoping(elm, owner, renderer) {
|
|
2977
|
+
// Set the class name for `*.scoped.css` style scoping.
|
|
2978
|
+
const scopeToken = getScopeTokenClass(owner);
|
|
2979
|
+
if (!isNull(scopeToken)) {
|
|
2980
|
+
const { getClassList } = renderer;
|
|
2981
|
+
// TODO [#2762]: this dot notation with add is probably problematic
|
|
2982
|
+
// probably we should have a renderer api for just the add operation
|
|
2983
|
+
getClassList(elm).add(scopeToken);
|
|
2984
|
+
}
|
|
2985
|
+
// Set property element for synthetic shadow DOM style scoping.
|
|
2986
|
+
const { stylesheetToken: syntheticToken } = owner.context;
|
|
2987
|
+
if (owner.shadowMode === 1 /* ShadowMode.Synthetic */ && !isUndefined$1(syntheticToken)) {
|
|
2988
|
+
elm.$shadowToken$ = syntheticToken;
|
|
2989
|
+
}
|
|
2990
|
+
}
|
|
2991
|
+
function applyDomManual(elm, vnode) {
|
|
2992
|
+
var _a;
|
|
2993
|
+
const { owner, data: { context }, } = vnode;
|
|
2994
|
+
if (owner.shadowMode === 1 /* ShadowMode.Synthetic */ && ((_a = context === null || context === void 0 ? void 0 : context.lwc) === null || _a === void 0 ? void 0 : _a.dom) === "manual" /* LwcDomMode.Manual */) {
|
|
2995
|
+
elm.$domManual$ = true;
|
|
3008
2996
|
}
|
|
3009
2997
|
}
|
|
3010
2998
|
function allocateChildren(vnode, vm) {
|
|
@@ -3039,15 +3027,6 @@
|
|
|
3039
3027
|
return vm;
|
|
3040
3028
|
}
|
|
3041
3029
|
const { sel, mode, ctor, owner } = vnode;
|
|
3042
|
-
setScopeTokenClassIfNecessary(elm, owner, renderer);
|
|
3043
|
-
if (owner.shadowMode === 1 /* ShadowMode.Synthetic */) {
|
|
3044
|
-
const { stylesheetToken } = owner.context;
|
|
3045
|
-
// when running in synthetic shadow mode, we need to set the shadowToken value
|
|
3046
|
-
// into each element from the template, so they can be styled accordingly.
|
|
3047
|
-
if (!isUndefined$1(stylesheetToken)) {
|
|
3048
|
-
setElementShadowToken(elm, stylesheetToken);
|
|
3049
|
-
}
|
|
3050
|
-
}
|
|
3051
3030
|
vm = createVM(elm, ctor, renderer, {
|
|
3052
3031
|
mode,
|
|
3053
3032
|
owner,
|
|
@@ -5237,7 +5216,7 @@
|
|
|
5237
5216
|
}
|
|
5238
5217
|
return ctor;
|
|
5239
5218
|
}
|
|
5240
|
-
/* version: 2.
|
|
5219
|
+
/* version: 2.21.1 */
|
|
5241
5220
|
|
|
5242
5221
|
/*
|
|
5243
5222
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5902,7 +5881,7 @@
|
|
|
5902
5881
|
});
|
|
5903
5882
|
freeze(LightningElement);
|
|
5904
5883
|
seal(LightningElement.prototype);
|
|
5905
|
-
/* version: 2.
|
|
5884
|
+
/* version: 2.21.1 */
|
|
5906
5885
|
|
|
5907
5886
|
exports.LightningElement = LightningElement;
|
|
5908
5887
|
exports.__unstable__ProfilerControl = profilerControl;
|