lwc 2.21.0 → 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 +41 -61
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
- package/dist/engine-server/esm/es2017/engine-server.js +41 -61
- 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
|
@@ -349,7 +349,7 @@
|
|
|
349
349
|
CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);
|
|
350
350
|
return attributeName;
|
|
351
351
|
}
|
|
352
|
-
/** version: 2.21.
|
|
352
|
+
/** version: 2.21.1 */
|
|
353
353
|
|
|
354
354
|
/*
|
|
355
355
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -3624,10 +3624,10 @@
|
|
|
3624
3624
|
svg = vnode.data.svg;
|
|
3625
3625
|
var createElement = renderer.createElement;
|
|
3626
3626
|
var namespace = isTrue(svg) ? SVG_NAMESPACE : undefined;
|
|
3627
|
-
var elm = createElement(sel, namespace);
|
|
3627
|
+
var elm = vnode.elm = createElement(sel, namespace);
|
|
3628
3628
|
linkNodeToShadow(elm, owner, renderer);
|
|
3629
|
-
|
|
3630
|
-
|
|
3629
|
+
applyStyleScoping(elm, owner, renderer);
|
|
3630
|
+
applyDomManual(elm, vnode);
|
|
3631
3631
|
patchElementPropsAndAttrs$1(null, vnode, renderer);
|
|
3632
3632
|
insertNode(elm, parent, anchor, renderer);
|
|
3633
3633
|
mountVNodes(vnode.children, elm, renderer, null);
|
|
@@ -3644,7 +3644,7 @@
|
|
|
3644
3644
|
var cloneNode = renderer.cloneNode,
|
|
3645
3645
|
isSyntheticShadowDefined = renderer.isSyntheticShadowDefined;
|
|
3646
3646
|
var elm = vnode.elm = cloneNode(vnode.fragment, true);
|
|
3647
|
-
linkNodeToShadow(elm, owner, renderer);
|
|
3647
|
+
linkNodeToShadow(elm, owner, renderer);
|
|
3648
3648
|
|
|
3649
3649
|
var renderMode = owner.renderMode,
|
|
3650
3650
|
shadowMode = owner.shadowMode;
|
|
@@ -3678,9 +3678,10 @@
|
|
|
3678
3678
|
// the custom element from the registry is expecting an upgrade callback
|
|
3679
3679
|
vm = createViewModelHook(elm, vnode, renderer);
|
|
3680
3680
|
});
|
|
3681
|
-
linkNodeToShadow(elm, owner, renderer);
|
|
3682
3681
|
vnode.elm = elm;
|
|
3683
3682
|
vnode.vm = vm;
|
|
3683
|
+
linkNodeToShadow(elm, owner, renderer);
|
|
3684
|
+
applyStyleScoping(elm, owner, renderer);
|
|
3684
3685
|
|
|
3685
3686
|
if (vm) {
|
|
3686
3687
|
allocateChildren(vnode, vm);
|
|
@@ -3797,26 +3798,6 @@
|
|
|
3797
3798
|
return vnode != null;
|
|
3798
3799
|
}
|
|
3799
3800
|
|
|
3800
|
-
function observeElementChildNodes(elm) {
|
|
3801
|
-
elm.$domManual$ = true;
|
|
3802
|
-
}
|
|
3803
|
-
|
|
3804
|
-
function setElementShadowToken(elm, token) {
|
|
3805
|
-
elm.$shadowToken$ = token;
|
|
3806
|
-
} // Set the scope token class for *.scoped.css styles
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
function setScopeTokenClassIfNecessary(elm, owner, renderer) {
|
|
3810
|
-
var token = getScopeTokenClass(owner);
|
|
3811
|
-
|
|
3812
|
-
if (!isNull(token)) {
|
|
3813
|
-
var _getClassList = renderer.getClassList; // TODO [#2762]: this dot notation with add is probably problematic
|
|
3814
|
-
// probably we should have a renderer api for just the add operation
|
|
3815
|
-
|
|
3816
|
-
_getClassList(elm).add(token);
|
|
3817
|
-
}
|
|
3818
|
-
}
|
|
3819
|
-
|
|
3820
3801
|
function linkNodeToShadow(elm, owner, renderer) {
|
|
3821
3802
|
var renderRoot = owner.renderRoot,
|
|
3822
3803
|
renderMode = owner.renderMode,
|
|
@@ -3867,28 +3848,39 @@
|
|
|
3867
3848
|
patchProps(oldVnode, vnode, renderer);
|
|
3868
3849
|
}
|
|
3869
3850
|
|
|
3870
|
-
function
|
|
3871
|
-
|
|
3872
|
-
|
|
3851
|
+
function applyStyleScoping(elm, owner, renderer) {
|
|
3852
|
+
// Set the class name for `*.scoped.css` style scoping.
|
|
3853
|
+
var scopeToken = getScopeTokenClass(owner);
|
|
3854
|
+
|
|
3855
|
+
if (!isNull(scopeToken)) {
|
|
3856
|
+
var _getClassList = renderer.getClassList; // TODO [#2762]: this dot notation with add is probably problematic
|
|
3857
|
+
// probably we should have a renderer api for just the add operation
|
|
3858
|
+
|
|
3859
|
+
_getClassList(elm).add(scopeToken);
|
|
3860
|
+
} // Set property element for synthetic shadow DOM style scoping.
|
|
3861
|
+
|
|
3862
|
+
|
|
3863
|
+
var syntheticToken = owner.context.stylesheetToken;
|
|
3873
3864
|
|
|
3874
3865
|
if (owner.shadowMode === 1
|
|
3875
3866
|
/* ShadowMode.Synthetic */
|
|
3876
|
-
) {
|
|
3877
|
-
|
|
3878
|
-
|
|
3867
|
+
&& !isUndefined$1(syntheticToken)) {
|
|
3868
|
+
elm.$shadowToken$ = syntheticToken;
|
|
3869
|
+
}
|
|
3870
|
+
}
|
|
3879
3871
|
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
) {
|
|
3883
|
-
// this element will now accept any manual content inserted into it
|
|
3884
|
-
observeElementChildNodes(elm);
|
|
3885
|
-
}
|
|
3872
|
+
function applyDomManual(elm, vnode) {
|
|
3873
|
+
var _a;
|
|
3886
3874
|
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3875
|
+
var owner = vnode.owner,
|
|
3876
|
+
context = vnode.data.context;
|
|
3877
|
+
|
|
3878
|
+
if (owner.shadowMode === 1
|
|
3879
|
+
/* ShadowMode.Synthetic */
|
|
3880
|
+
&& ((_a = context === null || context === void 0 ? void 0 : context.lwc) === null || _a === void 0 ? void 0 : _a.dom) === "manual"
|
|
3881
|
+
/* LwcDomMode.Manual */
|
|
3882
|
+
) {
|
|
3883
|
+
elm.$domManual$ = true;
|
|
3892
3884
|
}
|
|
3893
3885
|
}
|
|
3894
3886
|
|
|
@@ -3935,19 +3927,6 @@
|
|
|
3935
3927
|
mode = vnode.mode,
|
|
3936
3928
|
ctor = vnode.ctor,
|
|
3937
3929
|
owner = vnode.owner;
|
|
3938
|
-
setScopeTokenClassIfNecessary(elm, owner, renderer);
|
|
3939
|
-
|
|
3940
|
-
if (owner.shadowMode === 1
|
|
3941
|
-
/* ShadowMode.Synthetic */
|
|
3942
|
-
) {
|
|
3943
|
-
var stylesheetToken = owner.context.stylesheetToken; // when running in synthetic shadow mode, we need to set the shadowToken value
|
|
3944
|
-
// into each element from the template, so they can be styled accordingly.
|
|
3945
|
-
|
|
3946
|
-
if (!isUndefined$1(stylesheetToken)) {
|
|
3947
|
-
setElementShadowToken(elm, stylesheetToken);
|
|
3948
|
-
}
|
|
3949
|
-
}
|
|
3950
|
-
|
|
3951
3930
|
vm = createVM(elm, ctor, renderer, {
|
|
3952
3931
|
mode: mode,
|
|
3953
3932
|
owner: owner,
|
|
@@ -6485,7 +6464,7 @@
|
|
|
6485
6464
|
|
|
6486
6465
|
return ctor;
|
|
6487
6466
|
}
|
|
6488
|
-
/* version: 2.21.
|
|
6467
|
+
/* version: 2.21.1 */
|
|
6489
6468
|
|
|
6490
6469
|
/*
|
|
6491
6470
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -7292,7 +7271,7 @@
|
|
|
7292
7271
|
});
|
|
7293
7272
|
freeze(LightningElement);
|
|
7294
7273
|
seal(LightningElement.prototype);
|
|
7295
|
-
/* version: 2.21.
|
|
7274
|
+
/* version: 2.21.1 */
|
|
7296
7275
|
|
|
7297
7276
|
exports.LightningElement = LightningElement;
|
|
7298
7277
|
exports.__unstable__ProfilerControl = profilerControl;
|
|
@@ -419,9 +419,9 @@ function htmlEscape(str, attrMode = false) {
|
|
|
419
419
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
420
420
|
*/
|
|
421
421
|
// Increment whenever the LWC template compiler changes
|
|
422
|
-
const LWC_VERSION = "2.21.
|
|
422
|
+
const LWC_VERSION = "2.21.1";
|
|
423
423
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
424
|
-
/** version: 2.21.
|
|
424
|
+
/** version: 2.21.1 */
|
|
425
425
|
|
|
426
426
|
/*
|
|
427
427
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -530,7 +530,7 @@ function setFeatureFlagForTest(name, value) {
|
|
|
530
530
|
setFeatureFlag(name, value);
|
|
531
531
|
}
|
|
532
532
|
}
|
|
533
|
-
/** version: 2.21.
|
|
533
|
+
/** version: 2.21.1 */
|
|
534
534
|
|
|
535
535
|
/* proxy-compat-disable */
|
|
536
536
|
|
|
@@ -3796,10 +3796,11 @@ function mountElement(vnode, parent, anchor, renderer) {
|
|
|
3796
3796
|
const { sel, owner, data: { svg }, } = vnode;
|
|
3797
3797
|
const { createElement } = renderer;
|
|
3798
3798
|
const namespace = isTrue(svg) ? SVG_NAMESPACE : undefined;
|
|
3799
|
-
const elm = createElement(sel, namespace);
|
|
3799
|
+
const elm = (vnode.elm = createElement(sel, namespace));
|
|
3800
3800
|
linkNodeToShadow(elm, owner, renderer);
|
|
3801
|
-
|
|
3802
|
-
|
|
3801
|
+
applyStyleScoping(elm, owner, renderer);
|
|
3802
|
+
applyDomManual(elm, vnode);
|
|
3803
|
+
applyElementRestrictions(elm, vnode);
|
|
3803
3804
|
patchElementPropsAndAttrs$1(null, vnode, renderer);
|
|
3804
3805
|
insertNode(elm, parent, anchor, renderer);
|
|
3805
3806
|
mountVNodes(vnode.children, elm, renderer, null);
|
|
@@ -3814,6 +3815,7 @@ function mountStatic(vnode, parent, anchor, renderer) {
|
|
|
3814
3815
|
const { cloneNode, isSyntheticShadowDefined } = renderer;
|
|
3815
3816
|
const elm = (vnode.elm = cloneNode(vnode.fragment, true));
|
|
3816
3817
|
linkNodeToShadow(elm, owner, renderer);
|
|
3818
|
+
applyElementRestrictions(elm, vnode);
|
|
3817
3819
|
// Marks this node as Static to propagate the shadow resolver. must happen after elm is assigned to the proper shadow
|
|
3818
3820
|
const { renderMode, shadowMode } = owner;
|
|
3819
3821
|
if (isSyntheticShadowDefined) {
|
|
@@ -3821,10 +3823,6 @@ function mountStatic(vnode, parent, anchor, renderer) {
|
|
|
3821
3823
|
elm[KEY__SHADOW_STATIC] = true;
|
|
3822
3824
|
}
|
|
3823
3825
|
}
|
|
3824
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
3825
|
-
const isLight = renderMode === 0 /* RenderMode.Light */;
|
|
3826
|
-
patchElementWithRestrictions(elm, { isPortal: false, isLight });
|
|
3827
|
-
}
|
|
3828
3826
|
insertNode(elm, parent, anchor, renderer);
|
|
3829
3827
|
}
|
|
3830
3828
|
function mountCustomElement(vnode, parent, anchor, renderer) {
|
|
@@ -3841,9 +3839,10 @@ function mountCustomElement(vnode, parent, anchor, renderer) {
|
|
|
3841
3839
|
// the custom element from the registry is expecting an upgrade callback
|
|
3842
3840
|
vm = createViewModelHook(elm, vnode, renderer);
|
|
3843
3841
|
});
|
|
3844
|
-
linkNodeToShadow(elm, owner, renderer);
|
|
3845
3842
|
vnode.elm = elm;
|
|
3846
3843
|
vnode.vm = vm;
|
|
3844
|
+
linkNodeToShadow(elm, owner, renderer);
|
|
3845
|
+
applyStyleScoping(elm, owner, renderer);
|
|
3847
3846
|
if (vm) {
|
|
3848
3847
|
allocateChildren(vnode, vm);
|
|
3849
3848
|
}
|
|
@@ -3927,22 +3926,6 @@ function unmountVNodes(vnodes, parent, renderer, doRemove = false, start = 0, en
|
|
|
3927
3926
|
function isVNode(vnode) {
|
|
3928
3927
|
return vnode != null;
|
|
3929
3928
|
}
|
|
3930
|
-
function observeElementChildNodes(elm) {
|
|
3931
|
-
elm.$domManual$ = true;
|
|
3932
|
-
}
|
|
3933
|
-
function setElementShadowToken(elm, token) {
|
|
3934
|
-
elm.$shadowToken$ = token;
|
|
3935
|
-
}
|
|
3936
|
-
// Set the scope token class for *.scoped.css styles
|
|
3937
|
-
function setScopeTokenClassIfNecessary(elm, owner, renderer) {
|
|
3938
|
-
const token = getScopeTokenClass(owner);
|
|
3939
|
-
if (!isNull(token)) {
|
|
3940
|
-
const { getClassList } = renderer;
|
|
3941
|
-
// TODO [#2762]: this dot notation with add is probably problematic
|
|
3942
|
-
// probably we should have a renderer api for just the add operation
|
|
3943
|
-
getClassList(elm).add(token);
|
|
3944
|
-
}
|
|
3945
|
-
}
|
|
3946
3929
|
function linkNodeToShadow(elm, owner, renderer) {
|
|
3947
3930
|
const { renderRoot, renderMode, shadowMode } = owner;
|
|
3948
3931
|
const { isSyntheticShadowDefined } = renderer;
|
|
@@ -3995,31 +3978,37 @@ function patchElementPropsAndAttrs$1(oldVnode, vnode, renderer) {
|
|
|
3995
3978
|
patchAttributes(oldVnode, vnode, renderer);
|
|
3996
3979
|
patchProps(oldVnode, vnode, renderer);
|
|
3997
3980
|
}
|
|
3998
|
-
function
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
if (
|
|
4002
|
-
const {
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
context.lwc.dom === "manual" /* LwcDomMode.Manual */) {
|
|
4007
|
-
// this element will now accept any manual content inserted into it
|
|
4008
|
-
observeElementChildNodes(elm);
|
|
4009
|
-
}
|
|
4010
|
-
if (!isUndefined$1(stylesheetToken)) {
|
|
4011
|
-
// when running in synthetic shadow mode, we need to set the shadowToken value
|
|
4012
|
-
// into each element from the template, so they can be styled accordingly.
|
|
4013
|
-
setElementShadowToken(elm, stylesheetToken);
|
|
4014
|
-
}
|
|
3981
|
+
function applyStyleScoping(elm, owner, renderer) {
|
|
3982
|
+
// Set the class name for `*.scoped.css` style scoping.
|
|
3983
|
+
const scopeToken = getScopeTokenClass(owner);
|
|
3984
|
+
if (!isNull(scopeToken)) {
|
|
3985
|
+
const { getClassList } = renderer;
|
|
3986
|
+
// TODO [#2762]: this dot notation with add is probably problematic
|
|
3987
|
+
// probably we should have a renderer api for just the add operation
|
|
3988
|
+
getClassList(elm).add(scopeToken);
|
|
4015
3989
|
}
|
|
3990
|
+
// Set property element for synthetic shadow DOM style scoping.
|
|
3991
|
+
const { stylesheetToken: syntheticToken } = owner.context;
|
|
3992
|
+
if (owner.shadowMode === 1 /* ShadowMode.Synthetic */ && !isUndefined$1(syntheticToken)) {
|
|
3993
|
+
elm.$shadowToken$ = syntheticToken;
|
|
3994
|
+
}
|
|
3995
|
+
}
|
|
3996
|
+
function applyDomManual(elm, vnode) {
|
|
3997
|
+
var _a;
|
|
3998
|
+
const { owner, data: { context }, } = vnode;
|
|
3999
|
+
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 */) {
|
|
4000
|
+
elm.$domManual$ = true;
|
|
4001
|
+
}
|
|
4002
|
+
}
|
|
4003
|
+
function applyElementRestrictions(elm, vnode) {
|
|
4004
|
+
var _a, _b;
|
|
4016
4005
|
if (process.env.NODE_ENV !== 'production') {
|
|
4017
|
-
const
|
|
4018
|
-
const
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4006
|
+
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 */;
|
|
4007
|
+
const isLight = vnode.owner.renderMode === 0 /* RenderMode.Light */;
|
|
4008
|
+
patchElementWithRestrictions(elm, {
|
|
4009
|
+
isPortal,
|
|
4010
|
+
isLight,
|
|
4011
|
+
});
|
|
4023
4012
|
}
|
|
4024
4013
|
}
|
|
4025
4014
|
function allocateChildren(vnode, vm) {
|
|
@@ -4054,15 +4043,6 @@ function createViewModelHook(elm, vnode, renderer) {
|
|
|
4054
4043
|
return vm;
|
|
4055
4044
|
}
|
|
4056
4045
|
const { sel, mode, ctor, owner } = vnode;
|
|
4057
|
-
setScopeTokenClassIfNecessary(elm, owner, renderer);
|
|
4058
|
-
if (owner.shadowMode === 1 /* ShadowMode.Synthetic */) {
|
|
4059
|
-
const { stylesheetToken } = owner.context;
|
|
4060
|
-
// when running in synthetic shadow mode, we need to set the shadowToken value
|
|
4061
|
-
// into each element from the template, so they can be styled accordingly.
|
|
4062
|
-
if (!isUndefined$1(stylesheetToken)) {
|
|
4063
|
-
setElementShadowToken(elm, stylesheetToken);
|
|
4064
|
-
}
|
|
4065
|
-
}
|
|
4066
4046
|
vm = createVM(elm, ctor, renderer, {
|
|
4067
4047
|
mode,
|
|
4068
4048
|
owner,
|
|
@@ -6281,7 +6261,7 @@ function freezeTemplate(tmpl) {
|
|
|
6281
6261
|
});
|
|
6282
6262
|
}
|
|
6283
6263
|
}
|
|
6284
|
-
/* version: 2.21.
|
|
6264
|
+
/* version: 2.21.1 */
|
|
6285
6265
|
|
|
6286
6266
|
/*
|
|
6287
6267
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -6757,7 +6737,7 @@ function renderComponent(tagName, Ctor, props = {}) {
|
|
|
6757
6737
|
*/
|
|
6758
6738
|
freeze(LightningElement);
|
|
6759
6739
|
seal(LightningElement.prototype);
|
|
6760
|
-
/* version: 2.21.
|
|
6740
|
+
/* version: 2.21.1 */
|
|
6761
6741
|
|
|
6762
6742
|
exports.LightningElement = LightningElement;
|
|
6763
6743
|
exports.api = api$1;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});const{assign:t,create:n,defineProperties:r,defineProperty:o,freeze:i,getOwnPropertyDescriptor:s,getOwnPropertyNames:l,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:d,seal:f,setPrototypeOf:h}=Object,{isArray:p}=Array,{copyWithin:m,fill:g,filter:w,find:y,indexOf:b,join:v,map:C,pop:E,push:S,reduce:k,reverse:x,shift:M,slice:T,sort:A,splice:O,unshift:P,forEach:N}=Array.prototype,{fromCharCode:$}=String,{charCodeAt:L,replace:_,slice:D,toLowerCase:F}=String.prototype;function R(e){return void 0===e}function I(e){return null===e}function H(e){return!0===e}function j(e){return!1===e}function B(e){return"function"==typeof e}function W(e){return"string"==typeof e}function V(){}const K={}.toString;function z(e){return e&&e.toString?p(e)?v.call(C.call(e,z),","):e.toString():"object"==typeof e?K.call(e):e+""}function G(e,t){do{const n=s(e,t);if(!R(n))return n;e=a(e)}while(null!==e)}const U=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:q,AriaPropNameToAttrNameMap:X}=(()=>{const e=n(null),t=n(null);return N.call(U,(n=>{const r=F.call(_.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})();function Y(e){return e in q}const J=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),Q="http://www.w3.org/1999/xhtml",Z=new Set(["area","base","br","col","embed","hr","img","input","link","meta","source","track","wbr"]);const ee=new Map([["autofocus",new Set(["button","input","keygen","select","textarea"])],["autoplay",new Set(["audio","video"])],["checked",new Set(["command","input"])],["disabled",new Set(["button","command","fieldset","input","keygen","optgroup","select","textarea"])],["formnovalidate",new Set(["button"])],["hidden",new Set],["loop",new Set(["audio","bgsound","marquee","video"])],["multiple",new Set(["input","select"])],["muted",new Set(["audio","video"])],["novalidate",new Set(["form"])],["open",new Set(["details"])],["readonly",new Set(["input","textarea"])],["required",new Set(["input","select","textarea"])],["reversed",new Set(["ol"])],["selected",new Set(["option"])]]);function te(e,t){const n=ee.get(e);return void 0!==n&&(0===n.size||n.has(t))}const ne=new Set(["role","accesskey","class","contenteditable","contextmenu","dir","draggable","dropzone","hidden","id","itemprop","lang","slot","spellcheck","style","tabindex","title"]);function re(e){return ne.has(e)}const oe=new Map([["accessKey","accesskey"],["readOnly","readonly"],["tabIndex","tabindex"],["bgColor","bgcolor"],["colSpan","colspan"],["rowSpan","rowspan"],["contentEditable","contenteditable"],["crossOrigin","crossorigin"],["dateTime","datetime"],["formAction","formaction"],["isMap","ismap"],["maxLength","maxlength"],["minLength","minlength"],["noValidate","novalidate"],["useMap","usemap"],["htmlFor","for"]]),ie=new Map;function se(e){const t=X[e];if(!R(t))return t;const n=oe.get(e);if(!R(n))return n;const r=ie.get(e);if(!R(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=L.call(e,t);o+=n>=65&&n<=90?"-"+$(n+32):$(n)}return ie.set(e,o),o}const le={'"':""","'":"'","<":"<",">":">","&":"&"};function ae(e,t=!1){const n=t?/["&]/g:/["'<>&]/g;return e.replace(n,(e=>le[e]))}if("function"!=typeof Event){class e{}o(J,"Event",{value:e,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class e extends Event{}o(J,"CustomEvent",{value:e,configurable:!0,writable:!0})}const ce={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HMR:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null};J.lwcRuntimeFlags||Object.defineProperty(J,"lwcRuntimeFlags",{value:n(null)});const ue=J.lwcRuntimeFlags;let de=[];const fe=f(n(null)),he=f([]);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=new WeakMap;let we=null;function ye(e,t){const n=ge.get(e);if(!R(n)){const e=n[t];if(!R(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function be(e,t){if(null===we)return;const r=we,o=function(e){let t=ge.get(e);if(R(t)){const r=n(null);t=r,ge.set(e,r)}return t}(e);let i=o[t];if(R(i))i=[],o[t]=i;else if(i[0]===r)return;-1===b.call(i,r)&&r.link(i)}class ve{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=we;let n;we=this;try{e()}catch(e){n=Object(e)}finally{if(we=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=b.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 Ce(e,t){ye(e.component,t)}function Ee(e,t){be(e.component,t)}function Se(e){return`<${F.call(e.tagName)}>`}function ke(e,t){if(!u(t)&&R(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!I(n);)S.call(t,Se(n)),n=n.owner;return t.reverse().join("\n\t")}(e);o(t,"wcStack",{get:()=>n})}}function xe(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Me(e){return B(e)&&c.call(e,"__circular__")}const Te="undefined"!=typeof HTMLElement?HTMLElement:function(){},Ae=Te.prototype;function Oe(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}t(n(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:Oe("offsetHeight")},offsetLeft:{readOnly:!0,error:Oe("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Oe("offsetTop")},offsetWidth:{readOnly:!0,error:Oe("offsetWidth")},role:{attribute:"role"}});let Pe,Ne=null;function $e(e,t){return e!==Ne||t!==Pe}function Le(e,t){Ne=null,Pe=void 0}function _e(e,t){Ne=e,Pe=t}const De=n(null);N.call(d(X),(e=>{const t=G(Ae,e);R(t)||(De[e]=t)})),N.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=G(Ae,e);R(t)||(De[e]=t)}));const{isArray:Fe}=Array,{prototype:Re,getPrototypeOf:Ie,create:He,defineProperty:je,isExtensible:Be,getOwnPropertyDescriptor:We,getOwnPropertyNames:Ve,getOwnPropertySymbols:Ke,preventExtensions:ze,hasOwnProperty:Ge}=Object,{push:Ue,concat:qe}=Array.prototype;function Xe(e){return void 0===e}function Ye(e){return"function"==typeof e}const Je=new WeakMap;function Qe(e,t){Je.set(e,t)}const Ze=e=>Je.get(e)||e;class et{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(Ge.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;Xe(n)||(e.get=this.wrapGetter(n)),Xe(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=We(n,t);if(!Xe(r)){const n=this.wrapDescriptor(r);je(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;qe.call(Ve(t),Ke(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;Xe(n)||Ge.call(e,n)||je(e,n,He(null)),ze(e)}apply(e,t,n){}construct(e,t,n){}get(e,t){const{originalTarget:n,membrane:{valueObserved:r}}=this,o=n[t];return r(n,t),this.wrapValue(o)}has(e,t){const{originalTarget:n,membrane:{tagPropertyKey:r,valueObserved:o}}=this;return o(n,t),t in n||t===r}ownKeys(e){const{originalTarget:t,membrane:{tagPropertyKey:n}}=this,r=Xe(n)||Ge.call(t,n)?[]:[n];return Ue.apply(r,Ve(t)),Ue.apply(r,Ke(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!Be(e)&&(!!Be(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return Ie(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=We(n,t);if(Xe(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},je(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const tt=new WeakMap,nt=new WeakMap,rt=new WeakMap,ot=new WeakMap;class it extends et{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=tt.get(e);if(!Xe(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ze(this)))};return tt.set(e,r),rt.set(r,e),r}wrapSetter(e){const t=nt.get(e);if(!Xe(t))return t;const n=function(t){e.call(Ze(this),Ze(t))};return nt.set(e,n),ot.set(n,e),n}unwrapDescriptor(e){if(Ge.call(e,"value"))e.value=Ze(e.value);else{const{set:t,get:n}=e;Xe(n)||(e.get=this.unwrapGetter(n)),Xe(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=rt.get(e);if(!Xe(t))return t;const n=this,r=function(){return Ze(e.call(n.wrapValue(this)))};return tt.set(r,e),rt.set(e,r),r}unwrapSetter(e){const t=ot.get(e);if(!Xe(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return nt.set(r,e),ot.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&&Fe(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(Be(e)){const{originalTarget:t}=this;if(ze(t),Be(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!Ge.call(r,t)||(je(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const st=new WeakMap,lt=new WeakMap;class at extends et{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=st.get(e);if(!Xe(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ze(this)))};return st.set(e,r),r}wrapSetter(e){const t=lt.get(e);if(!Xe(t))return t;const n=function(e){};return lt.set(e,n),n}set(e,t,n){return!1}deleteProperty(e,t){return!1}setPrototypeOf(e,t){}preventExtensions(e){return!1}defineProperty(e,t,n){return!1}}function ct(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(Fe(e))return!0;const t=Ie(e);return t===Re||null===t||null===Ie(t)}const ut=(e,t)=>{},dt=(e,t)=>{};function ft(e){return Fe(e)?[]:{}}const ht=Symbol.for("@@lockerLiveValue"),pt=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=Ye(t)?t:dt,this.valueObserved=Ye(n)?n:ut,this.valueIsObservable=Ye(r)?r:ct,this.tagPropertyKey=o}getProxy(e){const t=Ze(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=Ze(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return Ze(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(Xe(t)){const n=new it(this,e);t=new Proxy(ft(e),n),Qe(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(Xe(t)){const n=new at(this,e);t=new Proxy(ft(e),n),Qe(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:be,valueMutated:ye,tagPropertyKey:ht});function mt(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=nr(this);if(!_n(t))return Ee(t,e),n.call(t.elm)},set(t){const n=nr(this);return t!==n.cmpProps[e]&&(n.cmpProps[e]=t,Ce(n,e)),r.call(n.elm,t)}}}const gt=function(){if(I(Ln))throw new ReferenceError("Illegal constructor");const e=Ln,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(h(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[ht]=void 0,tr(o,e),tr(n,e),1===e.renderMode?e.renderRoot=wt(e):e.renderRoot=n,this};function wt(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,tr(s,e),s}gt.prototype={constructor:gt,dispatchEvent(e){const t=nr(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=nr(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,Wn(r,t),n)},removeEventListener(e,t,n){const r=nr(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,Wn(r,t),n)},hasAttribute(e){const t=nr(this),{elm:n,renderer:{getAttribute:r}}=t;return!I(r(n,e))},hasAttributeNS(e,t){const n=nr(this),{elm:r,renderer:{getAttribute:o}}=n;return!I(o(r,t,e))},removeAttribute(e){const t=nr(this),{elm:n,renderer:{removeAttribute:r}}=t;_e(n,e),r(n,e),Le()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=nr(this);_e(n,t),r(n,t,e),Le()},getAttribute(e){const t=nr(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=nr(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=nr(this),{elm:r,renderer:{setAttribute:o}}=n;_e(r,e),o(r,e,t),Le()},setAttributeNS(e,t,n){const r=nr(this),{elm:o,renderer:{setAttribute:i}}=r;_e(o,t),i(o,t,n,e),Le()},getBoundingClientRect(){const e=nr(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=nr(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=nr(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return nr(this).shadowRoot},get shadowRoot(){return null},get children(){const e=nr(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=nr(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=nr(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=nr(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=nr(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=nr(this);return e.renderer.getLastElementChild(e.elm)},render(){return nr(this).def.template},toString(){return`[object ${nr(this).def.name}]`}};const yt=n(null),bt=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of bt)yt[e]={value(t){const n=nr(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};r(gt.prototype,yt);const vt=n(null);for(const e in De)vt[e]=mt(e,De[e]);function Ct(e){return{get(){const t=nr(this);return Ee(t,e),t.cmpFields[e]},set(t){const n=nr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Ce(n,e))},enumerable:!0,configurable:!0}}function Et(e){return{get(){const t=nr(this);if(!_n(t))return Ee(t,e),t.cmpProps[e]},set(t){const n=nr(this);n.cmpProps[e]=t,Ce(n,e)},enumerable:!0,configurable:!0}}r(gt.prototype,vt),o(gt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class St extends ve{constructor(e,t){super((()=>{j(this.debouncing)&&(this.debouncing=!0,me((()=>{if(H(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,H(e.isDirty)&&j(r)&&i>0&&Jn(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function kt(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=nr(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];R(o)&&(o=n.oar[e]=new St(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function xt(e){return{get(){const t=nr(this);return Ee(t,e),t.cmpFields[e]},set(t){const n=nr(this),r=pt.getProxy(t);r!==n.cmpFields[e]&&(n.cmpFields[e]=r,Ce(n,e))},enumerable:!0,configurable:!0}}function Mt(e){return{get(){const t=nr(this);return Ee(t,e),t.cmpFields[e]},set(t){const n=nr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Ce(n,e))},enumerable:!0,configurable:!0}}const Tt=new Map;const At={apiMethods:fe,apiFields:fe,apiFieldsConfig:fe,wiredMethods:fe,wiredFields:fe,observedFields:fe};const Ot=new Set;function Pt(){return[]}Ot.add(Pt);const Nt=n(null),$t=n(null);function Lt(e){let t=Nt[e];return R(t)&&(t=Nt[e]=function(){const t=nr(this),{getHook:n}=t;return n(t.component,e)}),t}function _t(e){let t=$t[e];return R(t)&&(t=$t[e]=function(t){const n=nr(this),{setHook:r}=n;t=pt.getReadOnlyProxy(t),r(n.component,e,t)}),t}function Dt(e){return function(){const t=nr(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,T.call(arguments))}}function Ft(e,t){return function(n,r,o){if(r===o)return;const i=e[n];R(i)?R(t)||t.apply(this,arguments):$e(this,n)&&(this[i]=o)}}function Rt(e,t,i){let s;B(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},h(s,e),h(s.prototype,e.prototype),o(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=n(null),{attributeChangedCallback:a}=e.prototype,{observedAttributes:c=[]}=e,u=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];l[se(n)]=n,u[n]={get:Lt(n),set:_t(n),enumerable:!0,configurable:!0}}for(let e=0,t=i.length;e<t;e+=1){const t=i[e];u[t]={value:Dt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:Ft(l,a)},o(s,"observedAttributes",{get:()=>[...c,...d(l)]}),r(s.prototype,u),s}const It=Rt(Te,l(De),[]);i(It),f(It.prototype);const Ht=new WeakMap;function jt(e){const{shadowSupportMode:o,renderMode:i}=e,s=function(e){const t=Tt.get(e);return R(t)?At:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:f,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(Me(t)){const e=xe(t);t=e===t?gt:e}return t}(e),E=C!==gt?Wt(C):Vt,S=Rt(E.bridge,d(l),d(u)),k=t(n(null),E.props,l),x=t(n(null),E.propsConfig,c),M=t(n(null),E.methods,u),T=t(n(null),E.wire,f,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;R(o)||(A=o);let O=E.renderMode;R(i)||(O="light"===i?0:1);const P=function(e){return Rn.get(e)}(e)||E.template,N=e.name||E.name;r(m,p);return{ctor:e,name:N,wire:T,props:k,propsConfig:x,methods:M,bridge:S,template:P,renderMode:O,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function Bt(e){if(!B(e))return!1;if(e.prototype instanceof gt)return!0;let t=e;do{if(Me(t)){const e=xe(t);if(e===t)return!0;t=e}if(t===gt)return!0}while(!I(t)&&(t=a(t)));return!1}function Wt(e){let t=Ht.get(e);if(R(t)){if(Me(e)){return t=Wt(xe(e)),Ht.set(e,t),t}if(!Bt(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=jt(e),Ht.set(e,t)}return t}const Vt={ctor:gt,name:gt.name,props:vt,propsConfig:fe,methods:fe,renderMode:1,shadowSupportMode:"reset",wire:fe,bridge:It,template:Pt,render:gt.prototype.render};function Kt(e){return`${e}-host`}function zt(e){return xn.h("style",{key:"style",attrs:{type:"text/css"}},[xn.t(e)])}function Gt(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(p(s))S.apply(r,Gt(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let a;1===n.renderMode?a=0===n.shadowMode:(R(o)&&(o=qt(n)),a=I(o)||0===o.shadowMode),S.call(r,s(i,l,a))}}return r}function Ut(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return R(n)||0===n.length||(o=Gt(n,r,e)),o}function qt(e){let t=e;for(;!I(t);){if(1===t.renderMode)return t;t=t.owner}return t}function Xt(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 C.call(t,zt);{const n=function(e){const t=qt(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 Yt(e){const{type:t}=e;return 2===t||3===t}function Jt(e,t){return e.key===t.key&&e.sel===t.sel}function Qt(e,t){return"input"===e&&("value"===t||"checked"===t)}const Zt=n(null);function en(e){if(null==e)return fe;e=W(e)?e:e+"";let t=Zt[e];if(t)return t;t=n(null);let r,o=0;const i=e.length;for(r=0;r<i;r++)32===L.call(e,r)&&(r>o&&(t[D.call(e,o,r)]=!0),o=r+1);return r>o&&(t[D.call(e,o,r)]=!0),Zt[e]=t,t}function tn(e,t,n,r){var o;o=t,gn.has(o)?function(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],a=e[s];const c=t.length-1;let u,d,f,h,p=c,m=t[0],g=t[p],w=!1;for(;o<=s&&i<=p;)an(l)?an(a)?an(m)?an(g)?Jt(l,m)?(nn(l,m,r),l=e[++o],m=t[++i]):Jt(a,g)?(nn(a,g,r),a=e[--s],g=t[--p]):Jt(l,g)?(nn(l,g,r),hn(l.elm,n,r.nextSibling(a.elm),r),l=e[++o],g=t[--p]):Jt(a,m)?(nn(a,m,r),hn(m.elm,n,l.elm,r),a=e[--s],m=t[++i]):(void 0===u&&(u=wn(e,o,s)),d=u[m.key],R(d)?(rn(m,n,r,l.elm),m=t[++i]):(f=e[d],an(f)&&(f.sel!==m.sel?rn(m,n,r,l.elm):(nn(f,m,r),w||(w=!0,e=[...e]),e[d]=void 0,hn(f.elm,n,l.elm,r))),m=t[++i])):g=t[--p]:m=t[++i]:a=e[--s]:l=e[++o];if(o<=s||i<=p)if(o>s){let e,o=p;do{e=t[++o]}while(!an(e)&&o<c);h=an(e)?e.elm:null,on(t,n,r,h,i,p+1)}else ln(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 on(t,n,r,null);if(0===i)return void ln(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&&(an(i)?an(l)?(nn(i,l,r),s=l.elm):sn(i,n,r,!0):an(l)&&(rn(l,n,r,s),s=l.elm))}}(e,t,n,r)}function nn(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&&fn(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;pn(e,t,n),tn(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;pn(e,t,n),R(o)||mn(t,o);tn(e.children,t.children,r,n),R(o)||Jn(o)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}}function rn(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);dn(s,o,r),hn(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);dn(s,o,r),hn(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);dn(l,o,r);const{renderMode:a,shadowMode:c}=o;s&&(1!==c&&0!==a||(l.$shadowStaticNode$=!0));hn(l,t,n,r)}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,a=H(s)?"http://www.w3.org/2000/svg":void 0,c=l(o,a);dn(c,i,r),function(e,t,n){const{owner:r}=t;if(un(e,r,n),1===r.shadowMode){const{data:{context:n}}=t,{stylesheetToken:o}=r.context;R(n)||R(n.lwc)||"manual"!==n.lwc.dom||function(e){e.$domManual$=!0}(e),R(o)||cn(e,o)}}(c,e,r),e.elm=c,pn(null,e,r),hn(c,t,n,r),on(e.children,c,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=function(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return R(i)?(i=class extends r{constructor(e){super(),B(e)&&e(this)}},o(e,i),i):i}(o,r);let l;const a=new s((t=>{l=function(e,t,n){let r=rr(e);if(!R(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;if(un(e,l,n),1===l.shadowMode){const{stylesheetToken:t}=l.context;R(t)||cn(e,t)}return r=er(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(dn(a,i,r),e.elm=a,e.vm=l,l)mn(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");pn(null,e,r),hn(a,t,n,r),l&&lr(l);on(e.children,a,r,null),l&&function(e){or(e)}(l)}(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function on(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];an(i)&&rn(i,t,n,r)}}function sn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&function(e,t,n){n.remove(e,t)}(i,t,n),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;ln(e.children,i,n,t);break}case 3:{const{vm:t}=e;R(t)||function(e){Zn(e)}(t)}}}function ln(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];an(i)&&sn(i,t,n,r)}}function an(e){return null!=e}function cn(e,t){e.$shadowToken$=t}function un(e,t,n){const r=function(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}(t);if(!I(r)){const{getClassList:t}=n;t(e).add(r)}}function dn(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function fn(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function hn(e,t,n,r){r.insert(e,t,n)}function pn(e,t,n){I(e)&&(function(e,t){const{elm:n,data:{on:r}}=e;if(R(r))return;const{addEventListener:o}=t;for(const e in r)o(n,e,r[e])}(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(R(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(R(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=I(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),a=en(o),c=en(i);let u;for(u in c)R(a[u])&&l.remove(u);for(u in a)R(c[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((I(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;W(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(R(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&&(_e(i,e),58===L.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===L.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):I(t)||R(t)?l(i,e):s(i,e,t),Le())}}(e,t,n),function(e,t,n){const{props:r}=t.data;if(R(r))return;const o=I(e)?fe:e.data.props;if(o===r)return;const i=I(e),{elm:s,sel:l}=t,{getProperty:a,setProperty:c}=n;for(const e in r){const t=r[e];(i||t!==(Qt(l,e)?a(s,e):o[e]))&&c(s,e,t)}}(e,t,n)}function mn(e,t){const r=e.aChildren||e.children;t.aChildren=r;const{renderMode:o,shadowMode:i}=t;1!==i&&0!==o||(!function(e,t){var r;const{cmpSlots:o}=e,i=e.cmpSlots=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];if(I(n))continue;let o="";Yt(n)&&(o=(null===(r=n.data.attrs)||void 0===r?void 0:r.slot)||"");const s=i[o]=i[o]||[];S.call(s,n)}if(j(e.isDirty)){const t=d(o);if(t.length!==d(i).length)return void jn(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(R(i[r])||o[r].length!==i[r].length)return void jn(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 jn(e)}}}(t,r),e.aChildren=r,e.children=he)}const gn=new WeakMap;function wn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(an(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}const yn=Symbol.iterator;function bn(e,t,n=he){const r=An();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,owner:r}}function vn(e,t,n,r=he){const o=An(),{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(An().velements,e)}(s),s}const Cn=new Map;let En=0;function Sn(e){var t;return t=e,gn.set(t,1),e}let kn=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const xn=i({s:function(e,t,n,r){R(r)||R(r[e])||0===r[e].length||(n=r[e]);const o=An(),{renderMode:i,shadowMode:s}=o;return 0===i?(Sn(n),n):(1===s&&Sn(n),bn("slot",t,n))},h:bn,c:vn,i:function(e,t){const n=[];if(Sn(n),R(e)||null===e)return n;const r=e[yn]();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);p(e)?S.apply(n,e):S.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];Sn(n);for(let r=0;r<t;r+=1){const t=e[r];p(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:An()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=An();if(I(t))throw new Error;const n=t;return function(t){Fn(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:An()}},dc:function(e,t,n,r=he){if(null==t)return null;if(!Bt(t))throw new Error(`Invalid LWC Constructor ${z(t)} for custom element <${e}>.`);let o=Cn.get(t);return R(o)&&(o=En++,Cn.set(t,o)),vn(e,t,Object.assign(Object.assign({},n),{key:`dc:${o}:${n.key}`}),r)},ti:function(e){return e>0&&!(H(e)||j(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:An()}},gid:function(e){const t=An();if(R(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=An();if(R(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 kn(e)}});let Mn=!1,Tn=null;function An(){return Tn}function On(e){Tn=e}const Pn=(Nn=(e,t)=>{const{createFragment:n}=t;return n(e)},(e,...t)=>{const r=n(null);return function(){const{context:{hasScopedStyles:n,stylesheetToken:o},shadowMode:i,renderer:s}=An(),l=!R(o),a=1===i;let c=0;if(l&&n&&(c|=1),l&&a&&(c|=2),!R(r[c]))return r[c];const u=n&&l?" "+o:"",d=n&&l?` class="${o}"`:"",f=l&&a?" "+o:"";let h="";for(let n=0,r=t.length;n<r;n++)switch(t[n]){case 0:h+=e[n]+u;break;case 1:h+=e[n]+d;break;case 2:h+=e[n]+f;break;case 3:h+=e[n]+d+f}return h+=e[e.length-1],r[c]=Nn(h,s),r[c]}});var Nn;function $n(e,t){const r=Mn,o=Tn;let i=[];return fr(e,e.owner,(()=>{Tn=e}),(()=>{const{component:r,context:o,cmpSlots:s,cmpTemplate:l,tro:a}=e;a.observe((()=>{if(t!==l){if(I(l)||dr(e),a=t,!Ot.has(a))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${z(t)}.`);e.cmpTemplate=t,o.tplCache=n(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!R(t))for(let e=0;e<t.length;e++)if(H(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:a}}=e,{stylesheets:c,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let h,p,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:y}=r;R(g)||(w&&s(n).remove(Kt(g)),y&&l(n,Kt(g))),R(c)||0===c.length||(h=u),R(h)||(f&&(s(n).add(Kt(h)),p=!0),d&&(a(n,Kt(h),""),m=!0)),r.stylesheetToken=h,r.hasTokenInClass=p,r.hasTokenInAttribute=m}(e,t);const r=Ut(e,t);o.styleVNodes=0===r.length?null:Xt(e,r)}var a;e.velements=[],Mn=!0,i=t.call(void 0,xn,r,s,o.tplCache);const{styleVNodes:c}=o;I(c)||P.apply(i,c)}))}),(()=>{Mn=r,Tn=o})),i}let Ln=null;function _n(e){return Ln===e}function Dn(e,t,n){const{component:r,callHook:o,owner:i}=e;fr(e,i,V,(()=>{o(r,t,n)}),V)}function Fn(e,t,n,r){const{callHook:o,owner:i}=e;fr(e,i,V,(()=>{o(n,t,[r])}),V)}const Rn=new Map;function In(e){return new ve((()=>{const{isDirty:t}=e;j(t)&&(jn(e),function(e){const{renderer:{ssr:t}}=e;if(H(t)||H(e.isScheduled))return;e.isScheduled=!0,0===ir.length&&me(sr);S.call(ir,e)}(e))}))}function Hn(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=An();let s,l=!1;return fr(e,o,(()=>{On(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{On(i)})),l?$n(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function jn(e){e.isDirty=!0}const Bn=new WeakMap;function Wn(e,t){if(!B(t))throw new TypeError;let n=Bn.get(t);return R(n)&&(n=function(n){Fn(e,t,void 0,n)},Bn.set(t,n)),n}const Vn=n(null),Kn=["rendered","connected","disconnected"];function zn(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 Gn=0;const Un=new WeakMap;function qn(e,t,n=[]){return t.apply(e,n)}function Xn(e,t,n){e[t]=n}function Yn(e,t){return e[t]}function Jn(e){or(e)}function Qn(e){const t=nr(e);1===t.state&&function(e){Zn(nr(e))}(e),lr(t),or(t)}function Zn(e){const{state:t}=e;if(2!==t){const{oar:t,tro:n}=e;n.reset();for(const e in t)t[e].reset();!function(e){j(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=Vn;t&&zn(e,t);ar(e)&&function(e){const{wiredDisconnecting:t}=e.context;fr(e,e,V,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),V)}(e);const{disconnectedCallback:n}=e.def;R(n)||Dn(e,n)}(e),cr(e),function(e){const{aChildren:t}=e;ur(t)}(e)}}function er(e,t,r,o){const{mode:i,owner:s,tagName:l,hydrated:a}=o,c=Wt(t),u={elm:e,def:c,idx:Gn++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,children:he,aChildren:he,velements:he,cmpProps:n(null),cmpFields:n(null),cmpSlots:n(null),oar:n(null),cmpTemplate:null,hydrated:Boolean(a),renderMode:c.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:fe,wiredConnecting:he,wiredDisconnecting:he},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:qn,setHook:Xn,getHook:Yn,renderer:r};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ue.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!I(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=I(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,r),u.tro=In(u),function(e,t){const n=Ln;let r;Ln=e;try{const o=new t;if(Ln.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(Ln=n,!R(r))throw ke(e,r),r}}(u,c.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=hr.get(i);if(!R(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=mr(e,t,s),a=s.dynamic.length>0;S.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!a?i():Promise.resolve().then(i)})),S.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function tr(e,t){Un.set(e,t)}function nr(e){return Un.get(e)}function rr(e){return Un.get(e)}function or(e){if(H(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&fr(e,e,(()=>{}),(()=>{tn(r,t,n,o)}),(()=>{}));1===e.state&&function(e){const{def:{renderedCallback:t},renderer:{ssr:n}}=e;if(H(n))return;const{rendered:r}=Vn;r&&zn(e,r);R(t)||Dn(e,t)}(e)}(e,Hn(e))}}let ir=[];function sr(){const e=ir.sort(((e,t)=>e.idx-t.idx));ir=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{or(r)}catch(r){throw t+1<n&&(0===ir.length&&me(sr),P.apply(ir,T.call(e,t+1))),r}}}function lr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=Vn;n&&zn(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;R(r)||Dn(e,r)}function ar(e){return l(e.def.wire).length>0}function cr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!R(n)){const e=rr(n);R(e)||Zn(e)}}}function ur(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!I(n)&&!R(n.elm))switch(n.type){case 2:ur(n.children);break;case 3:Zn(nr(n.elm));break}}}function dr(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)||R(o.elm)||r(o.elm,n)}e.children=he,cr(e),e.velements=he}function fr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!R(i)){ke(e,i);const n=I(t)?void 0:function(e){let t=e;for(;!I(t);){if(!R(t.def.errorCallback))return t;t=t.owner}}(t);if(R(n))throw i;dr(e);Dn(n,n.def.errorCallback,[i,i.wcStack])}}}const hr=new Map;class pr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),r(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function mr(e,t,n){const{method:r,adapter:i,configCallback:s,dynamic:l}=n,a=R(r)?function(e,t){const{cmpFields:n}=e;return r=>{r!==e.cmpFields[t]&&(n[t]=r,Ce(e,t))}}(e,t):function(e,t){return n=>{fr(e,e.owner,V,(()=>{t.call(e.component,n)}),V)}}(e,r);let c,u;o(a,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),o(a,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),fr(e,e,V,(()=>{u=new i(a)}),V);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=new ve((()=>{!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=>{fr(e,e,V,(()=>{u.update(t,c)}),V)}));return R(i.contextSchema)||function(e,t,n){const{adapter:r}=t,o=wr(r);if(R(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:a}}=e;S.call(s,(()=>{const e=new pr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){S.call(l,e)}});a(i,e)}))}(e,n,(t=>{c!==t&&(c=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const gr=new Map;function wr(e){return gr.get(e)}function yr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};hr.set(e,o)}function br(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};hr.set(e,o)}let vr=!1;const Cr=Symbol("namespace"),Er=Symbol("type"),Sr=Symbol("parent"),kr=Symbol("shadow-root"),xr=Symbol("children"),Mr=Symbol("attributes"),Tr=Symbol("event-listeners"),Ar=Symbol("value");var Or;!function(e){e.Text="text",e.Comment="comment",e.Raw="raw",e.Element="element",e.ShadowRoot="shadow-root"}(Or||(Or={}));const Pr=/\s+/g;function Nr(e){return new Set(e.split(Pr).filter((e=>e.length)))}function $r(e){return Array.from(e).join(" ")}function Lr(e){return function(){throw new TypeError(`"${e}" is not supported in this environment`)}}function _r(e,t){return{[Er]:Or.Element,tagName:e,[Cr]:null!=t?t:Q,[Sr]:null,[kr]:null,[xr]:[],[Mr]:[],[Tr]:{}}}const Dr=n(null),Fr=new WeakMap;function Rr(e,t,n=null){const r=e[Mr].find((e=>e.name===t&&e[Cr]===n));return r?r.value:null}function Ir(e,t,n,r=null){const o=e[Mr].find((e=>e.name===t&&e[Cr]===r));R(r)&&(r=null),R(o)?e[Mr].push({name:t,[Cr]:r,value:String(n)}):o.value=n}function Hr(e,t,n){e[Mr]=e[Mr].filter((e=>e.name!==t&&e[Cr]!==n))}const jr=V,Br=V,Wr=V,Vr=Lr("dispatchEvent"),Kr=Lr("getBoundingClientRect"),zr=Lr("querySelector"),Gr=Lr("querySelectorAll"),Ur=Lr("getElementsByTagName"),qr=Lr("getElementsByClassName"),Xr=Lr("getChildren"),Yr=Lr("getChildNodes"),Jr=Lr("getFirstChild"),Qr=Lr("getFirstElementChild"),Zr=Lr("getLastChild"),eo=Lr("getLastElementChild");const to={ssr:!0,isNativeShadowDefined:!1,isSyntheticShadowDefined:!1,HTMLElementExported:class{constructor(){const{constructor:e}=this,t=Fr.get(e);if(!t)throw new TypeError("Invalid Construction");return _r(t)}},isHydrating:function(){return!1},insert:function(e,t,n){const r=e[Sr];if(null!==r&&r!==t){const t=r[xr].indexOf(e);r[xr].splice(t,1)}e[Sr]=t;const o=I(n)?-1:t[xr].indexOf(n);-1===o?t[xr].push(e):t[xr].splice(o,0,e)},remove:function(e,t){const n=t[xr].indexOf(e);t[xr].splice(n,1)},cloneNode:function(e){return e},createFragment:function(e){return{[Er]:Or.Raw,[Sr]:null,[Ar]:e}},createElement:_r,createText:function(e){return{[Er]:Or.Text,[Ar]:String(e),[Sr]:null}},createComment:function(e){return{[Er]:Or.Comment,[Ar]:e,[Sr]:null}},nextSibling:function(e){const t=e[Sr];if(I(t))return null;const n=t[xr].indexOf(e);return t[xr][n+1]||null},attachShadow:function(e,t){return e[kr]={[Er]:Or.ShadowRoot,[xr]:[],mode:t.mode,delegatesFocus:!!t.delegatesFocus},e[kr]},getProperty:function(e,t){var n,r;if(t in e)return e[t];if(e[Er]===Or.Element){const o=se(t);if(te(o,e.tagName))return null!==(n=Rr(e,o))&&void 0!==n&&n;if(re(o)||Y(o))return Rr(e,o);if("input"===e.tagName&&"value"===t)return null!==(r=Rr(e,"value"))&&void 0!==r?r:""}},setProperty:function(e,t,n){if(t in e)return e[t]=n;if(e[Er]===Or.Element){const r=se(t);if("innerHTML"===t)return void(e[xr]=[{[Er]:Or.Raw,[Sr]:e,[Ar]:n}]);if(te(r,e.tagName))return!0===n?Ir(e,r,""):Hr(e,r);if(re(r)||Y(r))return Ir(e,r,n);if("input"===e.tagName&&"value"===r)return I(n)||R(n)?Hr(e,"value"):Ir(e,"value",n)}},setText:function(e,t){e[Er]===Or.Text?e[Ar]=t:e[Er]===Or.Element&&(e[xr]=[{[Er]:Or.Text,[Sr]:e,[Ar]:t}])},getAttribute:Rr,setAttribute:Ir,removeAttribute:Hr,addEventListener:Br,removeEventListener:Wr,dispatchEvent:Vr,getClassList:function(e){function t(){let t=e[Mr].find((e=>"class"===e.name&&I(e[Cr])));return R(t)&&(t={name:"class",[Cr]:null,value:""},e[Mr].push(t)),t}return{add(...e){const n=t(),r=Nr(n.value);e.forEach((e=>r.add(e))),n.value=$r(r)},remove(...e){const n=t(),r=Nr(n.value);e.forEach((e=>r.delete(e))),n.value=$r(r)}}},setCSSStyleProperty:function(e,t,n,r){const o=e[Mr].find((e=>"style"===e.name&&I(e[Cr]))),i=`${t}: ${n}${r?" !important":""}`;R(o)?e[Mr].push({name:"style",[Cr]:null,value:i}):o.value+=`; ${i}`},getBoundingClientRect:Kr,querySelector:zr,querySelectorAll:Gr,getElementsByTagName:Ur,getElementsByClassName:qr,getChildren:Xr,getChildNodes:Yr,getFirstChild:Jr,getFirstElementChild:Qr,getLastChild:Zr,getLastElementChild:eo,isConnected:function(e){return!I(e[Sr])},insertStylesheet:jr,assertInstanceOfHTMLElement:V,defineCustomElement:function(e,t,n){!function(e,t){if(e!==F.call(e)||Dr[e])throw new TypeError("Invalid Registration");Dr[e]=t,Fr.set(t,e)}(e,t)},getCustomElement:function(e){return Dr[e]}};function no(e){return e.map((e=>{switch(e[Er]){case Or.Text:return""===e[Ar]?"":ae(e[Ar]);case Or.Comment:return`\x3c!--${ae(e[Ar])}--\x3e`;case Or.Raw:return e[Ar];case Or.Element:return ro(e)}})).join("")}function ro(e){let t="";const n=e.tagName,r=e[Cr],o=r!==Q,i=e[xr].length>0;var s;return t+=`<${n}${e[Mr].length?` ${s=e[Mr],s.map((e=>e.value.length?`${e.name}=${JSON.stringify(ae(e.value))}`:e.name)).join(" ")}`:""}`,o&&!i?(t+="/>",t):(t+=">",e[kr]&&(t+=function(e){const t=[`shadowroot="${e.mode}"`];return e.delegatesFocus&&t.push("shadowrootdelegatesfocus"),`<template ${t.join(" ")}>${no(e[xr])}</template>`}(e[kr])),t+=no(e[xr]),function(e,t){return t===Q&&Z.has(e.toLowerCase())}(n,r)&&!i||(t+=`</${n}>`),t)}const oo={[Er]:Or.Element,tagName:"fake-root-element",[Cr]:Q,[Sr]:null,[kr]:null,[xr]:[],[Mr]:[],[Tr]:{}};i(gt),f(gt.prototype),exports.LightningElement=gt,exports.api=function(){throw new Error},exports.createContextProvider=function(e){let t=wr(e);if(!R(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){gr.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((()=>{R(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},exports.freezeTemplate=function(e){},exports.getComponentDef=function(e){const t=Wt(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:se(e)};const a={};for(const e in s)a[e]=s[e].value;return{ctor:n,name:r,props:l,methods:a}},exports.isComponentConstructor=Bt,exports.parseFragment=Pn,exports.parseSVGFragment=Pn,exports.readonly=function(e){return pt.getReadOnlyProxy(e)},exports.register=function(e){for(let t=0;t<Kn.length;++t){const n=Kn[t];if(n in e){let t=Vn[n];R(t)&&(Vn[n]=t=[]),S.call(t,e[n])}}},exports.registerComponent=function(e,{tmpl:t}){return B(e)&&Rn.set(e,t),e},exports.registerDecorators=function(e,t){const r=e.prototype,{publicProps:i,publicMethods:l,wire:a,track:c,fields:u}=t,d=n(null),f=n(null),h=n(null),p=n(null),m=n(null),g=n(null);let w;if(!R(i))for(const e in i){const t=i[e];if(g[e]=t.config,w=s(r,e),t.config>0){if(R(w))throw new Error;w=kt(e,w)}else w=R(w)||R(w.get)?Et(e):kt(e,w);f[e]=w,o(r,e,w)}if(R(l)||N.call(l,(e=>{if(w=s(r,e),R(w))throw new Error;d[e]=w})),!R(a))for(const e in a){const{adapter:t,method:n,config:i,dynamic:l=[]}=a[e];if(w=s(r,e),1===n){if(R(w))throw new Error;h[e]=w,yr(w,t,i,l)}else w=Mt(e),p[e]=w,br(w,t,i,l),o(r,e,w)}if(!R(c))for(const e in c)w=s(r,e),w=xt(e),o(r,e,w);if(!R(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=s(r,t);const n=!R(i)&&t in i,o=!R(c)&&t in c;n||o||(m[t]=Ct(t))}return function(e,t){Tt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:h,wiredFields:p,observedFields:m}),e},exports.registerTemplate=function(e){return Ot.add(e),o(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return R(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=R(e)?void 0:e.shadowAttribute}}),e},exports.renderComponent=function(e,t,n={}){if(!W(e))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${e}.`);if(!B(t))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if("object"!=typeof n||I(n))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${n}.`);const r=to.createElement(e);er(r,t,to,{mode:"open",owner:null,tagName:e});for(const[e,t]of Object.entries(n))r[e]=t;return r[Sr]=oo,Qn(r),ro(r)},exports.renderer=to,exports.sanitizeAttribute=function(e,t,n,r){return r},exports.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(R(ce[e])){const n=d(ce).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ue[e];if(!R(n))return void console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);o(ue,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},exports.setFeatureFlagForTest=function(e,t){},exports.setHooks=function(t){var n;e.isFalse(vr,"Hooks are already overridden, only one definition is allowed."),vr=!0,n=t.sanitizeHtmlContent,kn=n},exports.track=function(e){if(1===arguments.length)return pt.getProxy(e);throw new Error},exports.unwrap=function(e){return pt.unwrapProxy(e)},exports.wire=function(e,t){throw new Error};
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});const{assign:t,create:n,defineProperties:r,defineProperty:o,freeze:i,getOwnPropertyDescriptor:s,getOwnPropertyNames:l,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:d,seal:f,setPrototypeOf:h}=Object,{isArray:p}=Array,{copyWithin:m,fill:g,filter:w,find:y,indexOf:b,join:v,map:C,pop:E,push:S,reduce:k,reverse:x,shift:M,slice:T,sort:A,splice:O,unshift:P,forEach:N}=Array.prototype,{fromCharCode:$}=String,{charCodeAt:L,replace:_,slice:D,toLowerCase:F}=String.prototype;function R(e){return void 0===e}function I(e){return null===e}function H(e){return!0===e}function j(e){return!1===e}function B(e){return"function"==typeof e}function W(e){return"string"==typeof e}function V(){}const K={}.toString;function z(e){return e&&e.toString?p(e)?v.call(C.call(e,z),","):e.toString():"object"==typeof e?K.call(e):e+""}function G(e,t){do{const n=s(e,t);if(!R(n))return n;e=a(e)}while(null!==e)}const U=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:q,AriaPropNameToAttrNameMap:X}=(()=>{const e=n(null),t=n(null);return N.call(U,(n=>{const r=F.call(_.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})();function Y(e){return e in q}const J=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),Q="http://www.w3.org/1999/xhtml",Z=new Set(["area","base","br","col","embed","hr","img","input","link","meta","source","track","wbr"]);const ee=new Map([["autofocus",new Set(["button","input","keygen","select","textarea"])],["autoplay",new Set(["audio","video"])],["checked",new Set(["command","input"])],["disabled",new Set(["button","command","fieldset","input","keygen","optgroup","select","textarea"])],["formnovalidate",new Set(["button"])],["hidden",new Set],["loop",new Set(["audio","bgsound","marquee","video"])],["multiple",new Set(["input","select"])],["muted",new Set(["audio","video"])],["novalidate",new Set(["form"])],["open",new Set(["details"])],["readonly",new Set(["input","textarea"])],["required",new Set(["input","select","textarea"])],["reversed",new Set(["ol"])],["selected",new Set(["option"])]]);function te(e,t){const n=ee.get(e);return void 0!==n&&(0===n.size||n.has(t))}const ne=new Set(["role","accesskey","class","contenteditable","contextmenu","dir","draggable","dropzone","hidden","id","itemprop","lang","slot","spellcheck","style","tabindex","title"]);function re(e){return ne.has(e)}const oe=new Map([["accessKey","accesskey"],["readOnly","readonly"],["tabIndex","tabindex"],["bgColor","bgcolor"],["colSpan","colspan"],["rowSpan","rowspan"],["contentEditable","contenteditable"],["crossOrigin","crossorigin"],["dateTime","datetime"],["formAction","formaction"],["isMap","ismap"],["maxLength","maxlength"],["minLength","minlength"],["noValidate","novalidate"],["useMap","usemap"],["htmlFor","for"]]),ie=new Map;function se(e){const t=X[e];if(!R(t))return t;const n=oe.get(e);if(!R(n))return n;const r=ie.get(e);if(!R(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=L.call(e,t);o+=n>=65&&n<=90?"-"+$(n+32):$(n)}return ie.set(e,o),o}const le={'"':""","'":"'","<":"<",">":">","&":"&"};function ae(e,t=!1){const n=t?/["&]/g:/["'<>&]/g;return e.replace(n,(e=>le[e]))}if("function"!=typeof Event){class e{}o(J,"Event",{value:e,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class e extends Event{}o(J,"CustomEvent",{value:e,configurable:!0,writable:!0})}const ce={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HMR:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null};J.lwcRuntimeFlags||Object.defineProperty(J,"lwcRuntimeFlags",{value:n(null)});const ue=J.lwcRuntimeFlags;let de=[];const fe=f(n(null)),he=f([]);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=new WeakMap;let we=null;function ye(e,t){const n=ge.get(e);if(!R(n)){const e=n[t];if(!R(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function be(e,t){if(null===we)return;const r=we,o=function(e){let t=ge.get(e);if(R(t)){const r=n(null);t=r,ge.set(e,r)}return t}(e);let i=o[t];if(R(i))i=[],o[t]=i;else if(i[0]===r)return;-1===b.call(i,r)&&r.link(i)}class ve{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=we;let n;we=this;try{e()}catch(e){n=Object(e)}finally{if(we=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=b.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 Ce(e,t){ye(e.component,t)}function Ee(e,t){be(e.component,t)}function Se(e){return`<${F.call(e.tagName)}>`}function ke(e,t){if(!u(t)&&R(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!I(n);)S.call(t,Se(n)),n=n.owner;return t.reverse().join("\n\t")}(e);o(t,"wcStack",{get:()=>n})}}function xe(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Me(e){return B(e)&&c.call(e,"__circular__")}const Te="undefined"!=typeof HTMLElement?HTMLElement:function(){},Ae=Te.prototype;function Oe(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}t(n(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:Oe("offsetHeight")},offsetLeft:{readOnly:!0,error:Oe("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Oe("offsetTop")},offsetWidth:{readOnly:!0,error:Oe("offsetWidth")},role:{attribute:"role"}});let Pe,Ne=null;function $e(e,t){return e!==Ne||t!==Pe}function Le(e,t){Ne=null,Pe=void 0}function _e(e,t){Ne=e,Pe=t}const De=n(null);N.call(d(X),(e=>{const t=G(Ae,e);R(t)||(De[e]=t)})),N.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=G(Ae,e);R(t)||(De[e]=t)}));const{isArray:Fe}=Array,{prototype:Re,getPrototypeOf:Ie,create:He,defineProperty:je,isExtensible:Be,getOwnPropertyDescriptor:We,getOwnPropertyNames:Ve,getOwnPropertySymbols:Ke,preventExtensions:ze,hasOwnProperty:Ge}=Object,{push:Ue,concat:qe}=Array.prototype;function Xe(e){return void 0===e}function Ye(e){return"function"==typeof e}const Je=new WeakMap;function Qe(e,t){Je.set(e,t)}const Ze=e=>Je.get(e)||e;class et{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(Ge.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;Xe(n)||(e.get=this.wrapGetter(n)),Xe(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=We(n,t);if(!Xe(r)){const n=this.wrapDescriptor(r);je(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;qe.call(Ve(t),Ke(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;Xe(n)||Ge.call(e,n)||je(e,n,He(null)),ze(e)}apply(e,t,n){}construct(e,t,n){}get(e,t){const{originalTarget:n,membrane:{valueObserved:r}}=this,o=n[t];return r(n,t),this.wrapValue(o)}has(e,t){const{originalTarget:n,membrane:{tagPropertyKey:r,valueObserved:o}}=this;return o(n,t),t in n||t===r}ownKeys(e){const{originalTarget:t,membrane:{tagPropertyKey:n}}=this,r=Xe(n)||Ge.call(t,n)?[]:[n];return Ue.apply(r,Ve(t)),Ue.apply(r,Ke(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!Be(e)&&(!!Be(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return Ie(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=We(n,t);if(Xe(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},je(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const tt=new WeakMap,nt=new WeakMap,rt=new WeakMap,ot=new WeakMap;class it extends et{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=tt.get(e);if(!Xe(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ze(this)))};return tt.set(e,r),rt.set(r,e),r}wrapSetter(e){const t=nt.get(e);if(!Xe(t))return t;const n=function(t){e.call(Ze(this),Ze(t))};return nt.set(e,n),ot.set(n,e),n}unwrapDescriptor(e){if(Ge.call(e,"value"))e.value=Ze(e.value);else{const{set:t,get:n}=e;Xe(n)||(e.get=this.unwrapGetter(n)),Xe(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=rt.get(e);if(!Xe(t))return t;const n=this,r=function(){return Ze(e.call(n.wrapValue(this)))};return tt.set(r,e),rt.set(e,r),r}unwrapSetter(e){const t=ot.get(e);if(!Xe(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return nt.set(r,e),ot.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&&Fe(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(Be(e)){const{originalTarget:t}=this;if(ze(t),Be(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!Ge.call(r,t)||(je(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const st=new WeakMap,lt=new WeakMap;class at extends et{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=st.get(e);if(!Xe(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ze(this)))};return st.set(e,r),r}wrapSetter(e){const t=lt.get(e);if(!Xe(t))return t;const n=function(e){};return lt.set(e,n),n}set(e,t,n){return!1}deleteProperty(e,t){return!1}setPrototypeOf(e,t){}preventExtensions(e){return!1}defineProperty(e,t,n){return!1}}function ct(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(Fe(e))return!0;const t=Ie(e);return t===Re||null===t||null===Ie(t)}const ut=(e,t)=>{},dt=(e,t)=>{};function ft(e){return Fe(e)?[]:{}}const ht=Symbol.for("@@lockerLiveValue"),pt=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=Ye(t)?t:dt,this.valueObserved=Ye(n)?n:ut,this.valueIsObservable=Ye(r)?r:ct,this.tagPropertyKey=o}getProxy(e){const t=Ze(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=Ze(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return Ze(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(Xe(t)){const n=new it(this,e);t=new Proxy(ft(e),n),Qe(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(Xe(t)){const n=new at(this,e);t=new Proxy(ft(e),n),Qe(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:be,valueMutated:ye,tagPropertyKey:ht});function mt(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=tr(this);if(!Ln(t))return Ee(t,e),n.call(t.elm)},set(t){const n=tr(this);return t!==n.cmpProps[e]&&(n.cmpProps[e]=t,Ce(n,e)),r.call(n.elm,t)}}}const gt=function(){if(I($n))throw new ReferenceError("Illegal constructor");const e=$n,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(h(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[ht]=void 0,er(o,e),er(n,e),1===e.renderMode?e.renderRoot=wt(e):e.renderRoot=n,this};function wt(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,er(s,e),s}gt.prototype={constructor:gt,dispatchEvent(e){const t=tr(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=tr(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,Bn(r,t),n)},removeEventListener(e,t,n){const r=tr(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,Bn(r,t),n)},hasAttribute(e){const t=tr(this),{elm:n,renderer:{getAttribute:r}}=t;return!I(r(n,e))},hasAttributeNS(e,t){const n=tr(this),{elm:r,renderer:{getAttribute:o}}=n;return!I(o(r,t,e))},removeAttribute(e){const t=tr(this),{elm:n,renderer:{removeAttribute:r}}=t;_e(n,e),r(n,e),Le()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=tr(this);_e(n,t),r(n,t,e),Le()},getAttribute(e){const t=tr(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=tr(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=tr(this),{elm:r,renderer:{setAttribute:o}}=n;_e(r,e),o(r,e,t),Le()},setAttributeNS(e,t,n){const r=tr(this),{elm:o,renderer:{setAttribute:i}}=r;_e(o,t),i(o,t,n,e),Le()},getBoundingClientRect(){const e=tr(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=tr(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=tr(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return tr(this).shadowRoot},get shadowRoot(){return null},get children(){const e=tr(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=tr(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=tr(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=tr(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=tr(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=tr(this);return e.renderer.getLastElementChild(e.elm)},render(){return tr(this).def.template},toString(){return`[object ${tr(this).def.name}]`}};const yt=n(null),bt=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of bt)yt[e]={value(t){const n=tr(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};r(gt.prototype,yt);const vt=n(null);for(const e in De)vt[e]=mt(e,De[e]);function Ct(e){return{get(){const t=tr(this);return Ee(t,e),t.cmpFields[e]},set(t){const n=tr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Ce(n,e))},enumerable:!0,configurable:!0}}function Et(e){return{get(){const t=tr(this);if(!Ln(t))return Ee(t,e),t.cmpProps[e]},set(t){const n=tr(this);n.cmpProps[e]=t,Ce(n,e)},enumerable:!0,configurable:!0}}r(gt.prototype,vt),o(gt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class St extends ve{constructor(e,t){super((()=>{j(this.debouncing)&&(this.debouncing=!0,me((()=>{if(H(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,H(e.isDirty)&&j(r)&&i>0&&Yn(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function kt(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=tr(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];R(o)&&(o=n.oar[e]=new St(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function xt(e){return{get(){const t=tr(this);return Ee(t,e),t.cmpFields[e]},set(t){const n=tr(this),r=pt.getProxy(t);r!==n.cmpFields[e]&&(n.cmpFields[e]=r,Ce(n,e))},enumerable:!0,configurable:!0}}function Mt(e){return{get(){const t=tr(this);return Ee(t,e),t.cmpFields[e]},set(t){const n=tr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Ce(n,e))},enumerable:!0,configurable:!0}}const Tt=new Map;const At={apiMethods:fe,apiFields:fe,apiFieldsConfig:fe,wiredMethods:fe,wiredFields:fe,observedFields:fe};const Ot=new Set;function Pt(){return[]}Ot.add(Pt);const Nt=n(null),$t=n(null);function Lt(e){let t=Nt[e];return R(t)&&(t=Nt[e]=function(){const t=tr(this),{getHook:n}=t;return n(t.component,e)}),t}function _t(e){let t=$t[e];return R(t)&&(t=$t[e]=function(t){const n=tr(this),{setHook:r}=n;t=pt.getReadOnlyProxy(t),r(n.component,e,t)}),t}function Dt(e){return function(){const t=tr(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,T.call(arguments))}}function Ft(e,t){return function(n,r,o){if(r===o)return;const i=e[n];R(i)?R(t)||t.apply(this,arguments):$e(this,n)&&(this[i]=o)}}function Rt(e,t,i){let s;B(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},h(s,e),h(s.prototype,e.prototype),o(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=n(null),{attributeChangedCallback:a}=e.prototype,{observedAttributes:c=[]}=e,u=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];l[se(n)]=n,u[n]={get:Lt(n),set:_t(n),enumerable:!0,configurable:!0}}for(let e=0,t=i.length;e<t;e+=1){const t=i[e];u[t]={value:Dt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:Ft(l,a)},o(s,"observedAttributes",{get:()=>[...c,...d(l)]}),r(s.prototype,u),s}const It=Rt(Te,l(De),[]);i(It),f(It.prototype);const Ht=new WeakMap;function jt(e){const{shadowSupportMode:o,renderMode:i}=e,s=function(e){const t=Tt.get(e);return R(t)?At:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:f,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(Me(t)){const e=xe(t);t=e===t?gt:e}return t}(e),E=C!==gt?Wt(C):Vt,S=Rt(E.bridge,d(l),d(u)),k=t(n(null),E.props,l),x=t(n(null),E.propsConfig,c),M=t(n(null),E.methods,u),T=t(n(null),E.wire,f,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;R(o)||(A=o);let O=E.renderMode;R(i)||(O="light"===i?0:1);const P=function(e){return Fn.get(e)}(e)||E.template,N=e.name||E.name;r(m,p);return{ctor:e,name:N,wire:T,props:k,propsConfig:x,methods:M,bridge:S,template:P,renderMode:O,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function Bt(e){if(!B(e))return!1;if(e.prototype instanceof gt)return!0;let t=e;do{if(Me(t)){const e=xe(t);if(e===t)return!0;t=e}if(t===gt)return!0}while(!I(t)&&(t=a(t)));return!1}function Wt(e){let t=Ht.get(e);if(R(t)){if(Me(e)){return t=Wt(xe(e)),Ht.set(e,t),t}if(!Bt(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=jt(e),Ht.set(e,t)}return t}const Vt={ctor:gt,name:gt.name,props:vt,propsConfig:fe,methods:fe,renderMode:1,shadowSupportMode:"reset",wire:fe,bridge:It,template:Pt,render:gt.prototype.render};function Kt(e){return`${e}-host`}function zt(e){return kn.h("style",{key:"style",attrs:{type:"text/css"}},[kn.t(e)])}function Gt(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(p(s))S.apply(r,Gt(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let a;1===n.renderMode?a=0===n.shadowMode:(R(o)&&(o=qt(n)),a=I(o)||0===o.shadowMode),S.call(r,s(i,l,a))}}return r}function Ut(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return R(n)||0===n.length||(o=Gt(n,r,e)),o}function qt(e){let t=e;for(;!I(t);){if(1===t.renderMode)return t;t=t.owner}return t}function Xt(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 C.call(t,zt);{const n=function(e){const t=qt(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 Yt(e){const{type:t}=e;return 2===t||3===t}function Jt(e,t){return e.key===t.key&&e.sel===t.sel}function Qt(e,t){return"input"===e&&("value"===t||"checked"===t)}const Zt=n(null);function en(e){if(null==e)return fe;e=W(e)?e:e+"";let t=Zt[e];if(t)return t;t=n(null);let r,o=0;const i=e.length;for(r=0;r<i;r++)32===L.call(e,r)&&(r>o&&(t[D.call(e,o,r)]=!0),o=r+1);return r>o&&(t[D.call(e,o,r)]=!0),Zt[e]=t,t}function tn(e,t,n,r){var o;o=t,mn.has(o)?function(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],a=e[s];const c=t.length-1;let u,d,f,h,p=c,m=t[0],g=t[p],w=!1;for(;o<=s&&i<=p;)an(l)?an(a)?an(m)?an(g)?Jt(l,m)?(nn(l,m,r),l=e[++o],m=t[++i]):Jt(a,g)?(nn(a,g,r),a=e[--s],g=t[--p]):Jt(l,g)?(nn(l,g,r),dn(l.elm,n,r.nextSibling(a.elm),r),l=e[++o],g=t[--p]):Jt(a,m)?(nn(a,m,r),dn(m.elm,n,l.elm,r),a=e[--s],m=t[++i]):(void 0===u&&(u=gn(e,o,s)),d=u[m.key],R(d)?(rn(m,n,r,l.elm),m=t[++i]):(f=e[d],an(f)&&(f.sel!==m.sel?rn(m,n,r,l.elm):(nn(f,m,r),w||(w=!0,e=[...e]),e[d]=void 0,dn(f.elm,n,l.elm,r))),m=t[++i])):g=t[--p]:m=t[++i]:a=e[--s]:l=e[++o];if(o<=s||i<=p)if(o>s){let e,o=p;do{e=t[++o]}while(!an(e)&&o<c);h=an(e)?e.elm:null,on(t,n,r,h,i,p+1)}else ln(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 on(t,n,r,null);if(0===i)return void ln(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&&(an(i)?an(l)?(nn(i,l,r),s=l.elm):sn(i,n,r,!0):an(l)&&(rn(l,n,r,s),s=l.elm))}}(e,t,n,r)}function nn(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&&un(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;fn(e,t,n),tn(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;fn(e,t,n),R(o)||pn(t,o);tn(e.children,t.children,r,n),R(o)||Yn(o)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}}function rn(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);cn(s,o,r),dn(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);cn(s,o,r),dn(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);cn(l,o,r);const{renderMode:a,shadowMode:c}=o;s&&(1!==c&&0!==a||(l.$shadowStaticNode$=!0));dn(l,t,n,r)}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,a=H(s)?"http://www.w3.org/2000/svg":void 0,c=e.elm=l(o,a);cn(c,i,r),hn(c,i,r),function(e,t){var n;const{owner:r,data:{context:o}}=t;1===r.shadowMode&&"manual"===(null===(n=null==o?void 0:o.lwc)||void 0===n?void 0:n.dom)&&(e.$domManual$=!0)}(c,e),fn(null,e,r),dn(c,t,n,r),on(e.children,c,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=function(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return R(i)?(i=class extends r{constructor(e){super(),B(e)&&e(this)}},o(e,i),i):i}(o,r);let l;const a=new s((t=>{l=function(e,t,n){let r=nr(e);if(!R(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;return r=Zn(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(e.elm=a,e.vm=l,cn(a,i,r),hn(a,i,r),l)pn(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");fn(null,e,r),dn(a,t,n,r),l&&sr(l);on(e.children,a,r,null),l&&function(e){rr(e)}(l)}(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function on(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];an(i)&&rn(i,t,n,r)}}function sn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&function(e,t,n){n.remove(e,t)}(i,t,n),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;ln(e.children,i,n,t);break}case 3:{const{vm:t}=e;R(t)||function(e){Qn(e)}(t)}}}function ln(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];an(i)&&sn(i,t,n,r)}}function an(e){return null!=e}function cn(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function un(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function dn(e,t,n,r){r.insert(e,t,n)}function fn(e,t,n){I(e)&&(function(e,t){const{elm:n,data:{on:r}}=e;if(R(r))return;const{addEventListener:o}=t;for(const e in r)o(n,e,r[e])}(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(R(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(R(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=I(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),a=en(o),c=en(i);let u;for(u in c)R(a[u])&&l.remove(u);for(u in a)R(c[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((I(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;W(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(R(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&&(_e(i,e),58===L.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===L.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):I(t)||R(t)?l(i,e):s(i,e,t),Le())}}(e,t,n),function(e,t,n){const{props:r}=t.data;if(R(r))return;const o=I(e)?fe:e.data.props;if(o===r)return;const i=I(e),{elm:s,sel:l}=t,{getProperty:a,setProperty:c}=n;for(const e in r){const t=r[e];(i||t!==(Qt(l,e)?a(s,e):o[e]))&&c(s,e,t)}}(e,t,n)}function hn(e,t,n){const r=function(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}(t);if(!I(r)){const{getClassList:t}=n;t(e).add(r)}const{stylesheetToken:o}=t.context;1!==t.shadowMode||R(o)||(e.$shadowToken$=o)}function pn(e,t){const r=e.aChildren||e.children;t.aChildren=r;const{renderMode:o,shadowMode:i}=t;1!==i&&0!==o||(!function(e,t){var r;const{cmpSlots:o}=e,i=e.cmpSlots=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];if(I(n))continue;let o="";Yt(n)&&(o=(null===(r=n.data.attrs)||void 0===r?void 0:r.slot)||"");const s=i[o]=i[o]||[];S.call(s,n)}if(j(e.isDirty)){const t=d(o);if(t.length!==d(i).length)return void Hn(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(R(i[r])||o[r].length!==i[r].length)return void Hn(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 Hn(e)}}}(t,r),e.aChildren=r,e.children=he)}const mn=new WeakMap;function gn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(an(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}const wn=Symbol.iterator;function yn(e,t,n=he){const r=Tn();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,owner:r}}function bn(e,t,n,r=he){const o=Tn(),{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(Tn().velements,e)}(s),s}const vn=new Map;let Cn=0;function En(e){var t;return t=e,mn.set(t,1),e}let Sn=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const kn=i({s:function(e,t,n,r){R(r)||R(r[e])||0===r[e].length||(n=r[e]);const o=Tn(),{renderMode:i,shadowMode:s}=o;return 0===i?(En(n),n):(1===s&&En(n),yn("slot",t,n))},h:yn,c:bn,i:function(e,t){const n=[];if(En(n),R(e)||null===e)return n;const r=e[wn]();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);p(e)?S.apply(n,e):S.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];En(n);for(let r=0;r<t;r+=1){const t=e[r];p(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:Tn()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=Tn();if(I(t))throw new Error;const n=t;return function(t){Dn(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:Tn()}},dc:function(e,t,n,r=he){if(null==t)return null;if(!Bt(t))throw new Error(`Invalid LWC Constructor ${z(t)} for custom element <${e}>.`);let o=vn.get(t);return R(o)&&(o=Cn++,vn.set(t,o)),bn(e,t,Object.assign(Object.assign({},n),{key:`dc:${o}:${n.key}`}),r)},ti:function(e){return e>0&&!(H(e)||j(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:Tn()}},gid:function(e){const t=Tn();if(R(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=Tn();if(R(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 Sn(e)}});let xn=!1,Mn=null;function Tn(){return Mn}function An(e){Mn=e}const On=(Pn=(e,t)=>{const{createFragment:n}=t;return n(e)},(e,...t)=>{const r=n(null);return function(){const{context:{hasScopedStyles:n,stylesheetToken:o},shadowMode:i,renderer:s}=Tn(),l=!R(o),a=1===i;let c=0;if(l&&n&&(c|=1),l&&a&&(c|=2),!R(r[c]))return r[c];const u=n&&l?" "+o:"",d=n&&l?` class="${o}"`:"",f=l&&a?" "+o:"";let h="";for(let n=0,r=t.length;n<r;n++)switch(t[n]){case 0:h+=e[n]+u;break;case 1:h+=e[n]+d;break;case 2:h+=e[n]+f;break;case 3:h+=e[n]+d+f}return h+=e[e.length-1],r[c]=Pn(h,s),r[c]}});var Pn;function Nn(e,t){const r=xn,o=Mn;let i=[];return dr(e,e.owner,(()=>{Mn=e}),(()=>{const{component:r,context:o,cmpSlots:s,cmpTemplate:l,tro:a}=e;a.observe((()=>{if(t!==l){if(I(l)||ur(e),a=t,!Ot.has(a))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${z(t)}.`);e.cmpTemplate=t,o.tplCache=n(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!R(t))for(let e=0;e<t.length;e++)if(H(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:a}}=e,{stylesheets:c,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let h,p,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:y}=r;R(g)||(w&&s(n).remove(Kt(g)),y&&l(n,Kt(g))),R(c)||0===c.length||(h=u),R(h)||(f&&(s(n).add(Kt(h)),p=!0),d&&(a(n,Kt(h),""),m=!0)),r.stylesheetToken=h,r.hasTokenInClass=p,r.hasTokenInAttribute=m}(e,t);const r=Ut(e,t);o.styleVNodes=0===r.length?null:Xt(e,r)}var a;e.velements=[],xn=!0,i=t.call(void 0,kn,r,s,o.tplCache);const{styleVNodes:c}=o;I(c)||P.apply(i,c)}))}),(()=>{xn=r,Mn=o})),i}let $n=null;function Ln(e){return $n===e}function _n(e,t,n){const{component:r,callHook:o,owner:i}=e;dr(e,i,V,(()=>{o(r,t,n)}),V)}function Dn(e,t,n,r){const{callHook:o,owner:i}=e;dr(e,i,V,(()=>{o(n,t,[r])}),V)}const Fn=new Map;function Rn(e){return new ve((()=>{const{isDirty:t}=e;j(t)&&(Hn(e),function(e){const{renderer:{ssr:t}}=e;if(H(t)||H(e.isScheduled))return;e.isScheduled=!0,0===or.length&&me(ir);S.call(or,e)}(e))}))}function In(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=Tn();let s,l=!1;return dr(e,o,(()=>{An(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{An(i)})),l?Nn(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function Hn(e){e.isDirty=!0}const jn=new WeakMap;function Bn(e,t){if(!B(t))throw new TypeError;let n=jn.get(t);return R(n)&&(n=function(n){Dn(e,t,void 0,n)},jn.set(t,n)),n}const Wn=n(null),Vn=["rendered","connected","disconnected"];function Kn(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 zn=0;const Gn=new WeakMap;function Un(e,t,n=[]){return t.apply(e,n)}function qn(e,t,n){e[t]=n}function Xn(e,t){return e[t]}function Yn(e){rr(e)}function Jn(e){const t=tr(e);1===t.state&&function(e){Qn(tr(e))}(e),sr(t),rr(t)}function Qn(e){const{state:t}=e;if(2!==t){const{oar:t,tro:n}=e;n.reset();for(const e in t)t[e].reset();!function(e){j(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=Wn;t&&Kn(e,t);lr(e)&&function(e){const{wiredDisconnecting:t}=e.context;dr(e,e,V,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),V)}(e);const{disconnectedCallback:n}=e.def;R(n)||_n(e,n)}(e),ar(e),function(e){const{aChildren:t}=e;cr(t)}(e)}}function Zn(e,t,r,o){const{mode:i,owner:s,tagName:l,hydrated:a}=o,c=Wt(t),u={elm:e,def:c,idx:zn++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,children:he,aChildren:he,velements:he,cmpProps:n(null),cmpFields:n(null),cmpSlots:n(null),oar:n(null),cmpTemplate:null,hydrated:Boolean(a),renderMode:c.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:fe,wiredConnecting:he,wiredDisconnecting:he},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:Un,setHook:qn,getHook:Xn,renderer:r};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ue.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!I(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=I(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,r),u.tro=Rn(u),function(e,t){const n=$n;let r;$n=e;try{const o=new t;if($n.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if($n=n,!R(r))throw ke(e,r),r}}(u,c.ctor),lr(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=fr.get(i);if(!R(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=pr(e,t,s),a=s.dynamic.length>0;S.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!a?i():Promise.resolve().then(i)})),S.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function er(e,t){Gn.set(e,t)}function tr(e){return Gn.get(e)}function nr(e){return Gn.get(e)}function rr(e){if(H(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&dr(e,e,(()=>{}),(()=>{tn(r,t,n,o)}),(()=>{}));1===e.state&&function(e){const{def:{renderedCallback:t},renderer:{ssr:n}}=e;if(H(n))return;const{rendered:r}=Wn;r&&Kn(e,r);R(t)||_n(e,t)}(e)}(e,In(e))}}let or=[];function ir(){const e=or.sort(((e,t)=>e.idx-t.idx));or=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{rr(r)}catch(r){throw t+1<n&&(0===or.length&&me(ir),P.apply(or,T.call(e,t+1))),r}}}function sr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=Wn;n&&Kn(e,n),lr(e)&&function(e){const{wiredConnecting:t}=e.context;for(let e=0,n=t.length;e<n;e+=1)t[e]()}(e);const{connectedCallback:r}=e.def;R(r)||_n(e,r)}function lr(e){return l(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(!R(n)){const e=nr(n);R(e)||Qn(e)}}}function cr(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!I(n)&&!R(n.elm))switch(n.type){case 2:cr(n.children);break;case 3:Qn(tr(n.elm));break}}}function ur(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)||R(o.elm)||r(o.elm,n)}e.children=he,ar(e),e.velements=he}function dr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!R(i)){ke(e,i);const n=I(t)?void 0:function(e){let t=e;for(;!I(t);){if(!R(t.def.errorCallback))return t;t=t.owner}}(t);if(R(n))throw i;ur(e);_n(n,n.def.errorCallback,[i,i.wcStack])}}}const fr=new Map;class hr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),r(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function pr(e,t,n){const{method:r,adapter:i,configCallback:s,dynamic:l}=n,a=R(r)?function(e,t){const{cmpFields:n}=e;return r=>{r!==e.cmpFields[t]&&(n[t]=r,Ce(e,t))}}(e,t):function(e,t){return n=>{dr(e,e.owner,V,(()=>{t.call(e.component,n)}),V)}}(e,r);let c,u;o(a,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),o(a,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),dr(e,e,V,(()=>{u=new i(a)}),V);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=new ve((()=>{!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=>{dr(e,e,V,(()=>{u.update(t,c)}),V)}));return R(i.contextSchema)||function(e,t,n){const{adapter:r}=t,o=gr(r);if(R(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:a}}=e;S.call(s,(()=>{const e=new hr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){S.call(l,e)}});a(i,e)}))}(e,n,(t=>{c!==t&&(c=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const mr=new Map;function gr(e){return mr.get(e)}function wr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};fr.set(e,o)}function yr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};fr.set(e,o)}let br=!1;const vr=Symbol("namespace"),Cr=Symbol("type"),Er=Symbol("parent"),Sr=Symbol("shadow-root"),kr=Symbol("children"),xr=Symbol("attributes"),Mr=Symbol("event-listeners"),Tr=Symbol("value");var Ar;!function(e){e.Text="text",e.Comment="comment",e.Raw="raw",e.Element="element",e.ShadowRoot="shadow-root"}(Ar||(Ar={}));const Or=/\s+/g;function Pr(e){return new Set(e.split(Or).filter((e=>e.length)))}function Nr(e){return Array.from(e).join(" ")}function $r(e){return function(){throw new TypeError(`"${e}" is not supported in this environment`)}}function Lr(e,t){return{[Cr]:Ar.Element,tagName:e,[vr]:null!=t?t:Q,[Er]:null,[Sr]:null,[kr]:[],[xr]:[],[Mr]:{}}}const _r=n(null),Dr=new WeakMap;function Fr(e,t,n=null){const r=e[xr].find((e=>e.name===t&&e[vr]===n));return r?r.value:null}function Rr(e,t,n,r=null){const o=e[xr].find((e=>e.name===t&&e[vr]===r));R(r)&&(r=null),R(o)?e[xr].push({name:t,[vr]:r,value:String(n)}):o.value=n}function Ir(e,t,n){e[xr]=e[xr].filter((e=>e.name!==t&&e[vr]!==n))}const Hr=V,jr=V,Br=V,Wr=$r("dispatchEvent"),Vr=$r("getBoundingClientRect"),Kr=$r("querySelector"),zr=$r("querySelectorAll"),Gr=$r("getElementsByTagName"),Ur=$r("getElementsByClassName"),qr=$r("getChildren"),Xr=$r("getChildNodes"),Yr=$r("getFirstChild"),Jr=$r("getFirstElementChild"),Qr=$r("getLastChild"),Zr=$r("getLastElementChild");const eo={ssr:!0,isNativeShadowDefined:!1,isSyntheticShadowDefined:!1,HTMLElementExported:class{constructor(){const{constructor:e}=this,t=Dr.get(e);if(!t)throw new TypeError("Invalid Construction");return Lr(t)}},isHydrating:function(){return!1},insert:function(e,t,n){const r=e[Er];if(null!==r&&r!==t){const t=r[kr].indexOf(e);r[kr].splice(t,1)}e[Er]=t;const o=I(n)?-1:t[kr].indexOf(n);-1===o?t[kr].push(e):t[kr].splice(o,0,e)},remove:function(e,t){const n=t[kr].indexOf(e);t[kr].splice(n,1)},cloneNode:function(e){return e},createFragment:function(e){return{[Cr]:Ar.Raw,[Er]:null,[Tr]:e}},createElement:Lr,createText:function(e){return{[Cr]:Ar.Text,[Tr]:String(e),[Er]:null}},createComment:function(e){return{[Cr]:Ar.Comment,[Tr]:e,[Er]:null}},nextSibling:function(e){const t=e[Er];if(I(t))return null;const n=t[kr].indexOf(e);return t[kr][n+1]||null},attachShadow:function(e,t){return e[Sr]={[Cr]:Ar.ShadowRoot,[kr]:[],mode:t.mode,delegatesFocus:!!t.delegatesFocus},e[Sr]},getProperty:function(e,t){var n,r;if(t in e)return e[t];if(e[Cr]===Ar.Element){const o=se(t);if(te(o,e.tagName))return null!==(n=Fr(e,o))&&void 0!==n&&n;if(re(o)||Y(o))return Fr(e,o);if("input"===e.tagName&&"value"===t)return null!==(r=Fr(e,"value"))&&void 0!==r?r:""}},setProperty:function(e,t,n){if(t in e)return e[t]=n;if(e[Cr]===Ar.Element){const r=se(t);if("innerHTML"===t)return void(e[kr]=[{[Cr]:Ar.Raw,[Er]:e,[Tr]:n}]);if(te(r,e.tagName))return!0===n?Rr(e,r,""):Ir(e,r);if(re(r)||Y(r))return Rr(e,r,n);if("input"===e.tagName&&"value"===r)return I(n)||R(n)?Ir(e,"value"):Rr(e,"value",n)}},setText:function(e,t){e[Cr]===Ar.Text?e[Tr]=t:e[Cr]===Ar.Element&&(e[kr]=[{[Cr]:Ar.Text,[Er]:e,[Tr]:t}])},getAttribute:Fr,setAttribute:Rr,removeAttribute:Ir,addEventListener:jr,removeEventListener:Br,dispatchEvent:Wr,getClassList:function(e){function t(){let t=e[xr].find((e=>"class"===e.name&&I(e[vr])));return R(t)&&(t={name:"class",[vr]:null,value:""},e[xr].push(t)),t}return{add(...e){const n=t(),r=Pr(n.value);e.forEach((e=>r.add(e))),n.value=Nr(r)},remove(...e){const n=t(),r=Pr(n.value);e.forEach((e=>r.delete(e))),n.value=Nr(r)}}},setCSSStyleProperty:function(e,t,n,r){const o=e[xr].find((e=>"style"===e.name&&I(e[vr]))),i=`${t}: ${n}${r?" !important":""}`;R(o)?e[xr].push({name:"style",[vr]:null,value:i}):o.value+=`; ${i}`},getBoundingClientRect:Vr,querySelector:Kr,querySelectorAll:zr,getElementsByTagName:Gr,getElementsByClassName:Ur,getChildren:qr,getChildNodes:Xr,getFirstChild:Yr,getFirstElementChild:Jr,getLastChild:Qr,getLastElementChild:Zr,isConnected:function(e){return!I(e[Er])},insertStylesheet:Hr,assertInstanceOfHTMLElement:V,defineCustomElement:function(e,t,n){!function(e,t){if(e!==F.call(e)||_r[e])throw new TypeError("Invalid Registration");_r[e]=t,Dr.set(t,e)}(e,t)},getCustomElement:function(e){return _r[e]}};function to(e){return e.map((e=>{switch(e[Cr]){case Ar.Text:return""===e[Tr]?"":ae(e[Tr]);case Ar.Comment:return`\x3c!--${ae(e[Tr])}--\x3e`;case Ar.Raw:return e[Tr];case Ar.Element:return no(e)}})).join("")}function no(e){let t="";const n=e.tagName,r=e[vr],o=r!==Q,i=e[kr].length>0;var s;return t+=`<${n}${e[xr].length?` ${s=e[xr],s.map((e=>e.value.length?`${e.name}=${JSON.stringify(ae(e.value))}`:e.name)).join(" ")}`:""}`,o&&!i?(t+="/>",t):(t+=">",e[Sr]&&(t+=function(e){const t=[`shadowroot="${e.mode}"`];return e.delegatesFocus&&t.push("shadowrootdelegatesfocus"),`<template ${t.join(" ")}>${to(e[kr])}</template>`}(e[Sr])),t+=to(e[kr]),function(e,t){return t===Q&&Z.has(e.toLowerCase())}(n,r)&&!i||(t+=`</${n}>`),t)}const ro={[Cr]:Ar.Element,tagName:"fake-root-element",[vr]:Q,[Er]:null,[Sr]:null,[kr]:[],[xr]:[],[Mr]:{}};i(gt),f(gt.prototype),exports.LightningElement=gt,exports.api=function(){throw new Error},exports.createContextProvider=function(e){let t=gr(e);if(!R(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){mr.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((()=>{R(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},exports.freezeTemplate=function(e){},exports.getComponentDef=function(e){const t=Wt(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:se(e)};const a={};for(const e in s)a[e]=s[e].value;return{ctor:n,name:r,props:l,methods:a}},exports.isComponentConstructor=Bt,exports.parseFragment=On,exports.parseSVGFragment=On,exports.readonly=function(e){return pt.getReadOnlyProxy(e)},exports.register=function(e){for(let t=0;t<Vn.length;++t){const n=Vn[t];if(n in e){let t=Wn[n];R(t)&&(Wn[n]=t=[]),S.call(t,e[n])}}},exports.registerComponent=function(e,{tmpl:t}){return B(e)&&Fn.set(e,t),e},exports.registerDecorators=function(e,t){const r=e.prototype,{publicProps:i,publicMethods:l,wire:a,track:c,fields:u}=t,d=n(null),f=n(null),h=n(null),p=n(null),m=n(null),g=n(null);let w;if(!R(i))for(const e in i){const t=i[e];if(g[e]=t.config,w=s(r,e),t.config>0){if(R(w))throw new Error;w=kt(e,w)}else w=R(w)||R(w.get)?Et(e):kt(e,w);f[e]=w,o(r,e,w)}if(R(l)||N.call(l,(e=>{if(w=s(r,e),R(w))throw new Error;d[e]=w})),!R(a))for(const e in a){const{adapter:t,method:n,config:i,dynamic:l=[]}=a[e];if(w=s(r,e),1===n){if(R(w))throw new Error;h[e]=w,wr(w,t,i,l)}else w=Mt(e),p[e]=w,yr(w,t,i,l),o(r,e,w)}if(!R(c))for(const e in c)w=s(r,e),w=xt(e),o(r,e,w);if(!R(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=s(r,t);const n=!R(i)&&t in i,o=!R(c)&&t in c;n||o||(m[t]=Ct(t))}return function(e,t){Tt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:h,wiredFields:p,observedFields:m}),e},exports.registerTemplate=function(e){return Ot.add(e),o(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return R(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=R(e)?void 0:e.shadowAttribute}}),e},exports.renderComponent=function(e,t,n={}){if(!W(e))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${e}.`);if(!B(t))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if("object"!=typeof n||I(n))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${n}.`);const r=eo.createElement(e);Zn(r,t,eo,{mode:"open",owner:null,tagName:e});for(const[e,t]of Object.entries(n))r[e]=t;return r[Er]=ro,Jn(r),no(r)},exports.renderer=eo,exports.sanitizeAttribute=function(e,t,n,r){return r},exports.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(R(ce[e])){const n=d(ce).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ue[e];if(!R(n))return void console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);o(ue,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},exports.setFeatureFlagForTest=function(e,t){},exports.setHooks=function(t){var n;e.isFalse(br,"Hooks are already overridden, only one definition is allowed."),br=!0,n=t.sanitizeHtmlContent,Sn=n},exports.track=function(e){if(1===arguments.length)return pt.getProxy(e);throw new Error},exports.unwrap=function(e){return pt.unwrapProxy(e)},exports.wire=function(e,t){throw new Error};
|