lwc 2.13.0 → 2.13.3
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 +155 -145
- package/dist/engine-dom/iife/es2017/engine-dom.js +155 -145
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +2 -2
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +143 -133
- package/dist/engine-dom/iife/es5/engine-dom.js +162 -142
- package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +144 -124
- package/dist/engine-dom/umd/es2017/engine-dom.js +155 -145
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +2 -2
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +143 -133
- package/dist/engine-dom/umd/es5/engine-dom.js +162 -142
- package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +144 -124
- package/dist/engine-server/commonjs/es2017/engine-server.js +132 -124
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
- package/dist/engine-server/esm/es2017/engine-server.js +132 -124
- package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +693 -693
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +693 -693
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +681 -681
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +686 -686
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +1 -1
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +697 -697
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +693 -693
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +681 -681
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +686 -686
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +1 -1
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +697 -697
- 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.min.js +1 -1
- package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/iife/es5/wire-service.js +5 -5
- package/dist/wire-service/iife/es5/wire-service.min.js +1 -1
- package/dist/wire-service/iife/es5/wire-service_debug.js +5 -5
- package/dist/wire-service/umd/es2017/wire-service.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service.min.js +1 -1
- package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es5/wire-service.js +5 -5
- package/dist/wire-service/umd/es5/wire-service.min.js +1 -1
- package/dist/wire-service/umd/es5/wire-service_debug.js +5 -5
- package/package.json +7 -7
|
@@ -421,9 +421,9 @@ const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
|
|
|
421
421
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
422
422
|
*/
|
|
423
423
|
// Increment whenever the LWC template compiler changes
|
|
424
|
-
const LWC_VERSION = "2.13.
|
|
424
|
+
const LWC_VERSION = "2.13.3";
|
|
425
425
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
426
|
-
/** version: 2.13.
|
|
426
|
+
/** version: 2.13.3 */
|
|
427
427
|
|
|
428
428
|
/*
|
|
429
429
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -531,7 +531,7 @@ function setFeatureFlagForTest(name, value) {
|
|
|
531
531
|
setFeatureFlag(name, value);
|
|
532
532
|
}
|
|
533
533
|
}
|
|
534
|
-
/** version: 2.13.
|
|
534
|
+
/** version: 2.13.3 */
|
|
535
535
|
|
|
536
536
|
/* proxy-compat-disable */
|
|
537
537
|
|
|
@@ -939,6 +939,20 @@ function logError(message, vm) {
|
|
|
939
939
|
log('error', message, vm);
|
|
940
940
|
}
|
|
941
941
|
|
|
942
|
+
/*
|
|
943
|
+
* Copyright (c) 2020, salesforce.com, inc.
|
|
944
|
+
* All rights reserved.
|
|
945
|
+
* SPDX-License-Identifier: MIT
|
|
946
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
947
|
+
*/
|
|
948
|
+
function resolveCircularModuleDependency(fn) {
|
|
949
|
+
const module = fn();
|
|
950
|
+
return (module === null || module === void 0 ? void 0 : module.__esModule) ? module.default : module;
|
|
951
|
+
}
|
|
952
|
+
function isCircularModuleDependency(obj) {
|
|
953
|
+
return isFunction$1(obj) && hasOwnProperty$1.call(obj, '__circular__');
|
|
954
|
+
}
|
|
955
|
+
|
|
942
956
|
/*
|
|
943
957
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
944
958
|
* All rights reserved.
|
|
@@ -2304,64 +2318,7 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
2304
2318
|
patchLightningElementPrototypeWithRestrictions(LightningElement.prototype);
|
|
2305
2319
|
}
|
|
2306
2320
|
|
|
2307
|
-
|
|
2308
|
-
* Copyright (c) 2018, salesforce.com, inc.
|
|
2309
|
-
* All rights reserved.
|
|
2310
|
-
* SPDX-License-Identifier: MIT
|
|
2311
|
-
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2312
|
-
*/
|
|
2313
|
-
/**
|
|
2314
|
-
* @wire decorator to wire fields and methods to a wire adapter in
|
|
2315
|
-
* LWC Components. This function implements the internals of this
|
|
2316
|
-
* decorator.
|
|
2317
|
-
*/
|
|
2318
|
-
function wire(_adapter, _config) {
|
|
2319
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
2320
|
-
assert.fail('@wire(adapter, config?) may only be used as a decorator.');
|
|
2321
|
-
}
|
|
2322
|
-
throw new Error();
|
|
2323
|
-
}
|
|
2324
|
-
function internalWireFieldDecorator(key) {
|
|
2325
|
-
return {
|
|
2326
|
-
get() {
|
|
2327
|
-
const vm = getAssociatedVM(this);
|
|
2328
|
-
componentValueObserved(vm, key);
|
|
2329
|
-
return vm.cmpFields[key];
|
|
2330
|
-
},
|
|
2331
|
-
set(value) {
|
|
2332
|
-
const vm = getAssociatedVM(this);
|
|
2333
|
-
/**
|
|
2334
|
-
* Reactivity for wired fields is provided in wiring.
|
|
2335
|
-
* We intentionally add reactivity here since this is just
|
|
2336
|
-
* letting the author to do the wrong thing, but it will keep our
|
|
2337
|
-
* system to be backward compatible.
|
|
2338
|
-
*/
|
|
2339
|
-
if (value !== vm.cmpFields[key]) {
|
|
2340
|
-
vm.cmpFields[key] = value;
|
|
2341
|
-
componentValueMutated(vm, key);
|
|
2342
|
-
}
|
|
2343
|
-
},
|
|
2344
|
-
enumerable: true,
|
|
2345
|
-
configurable: true,
|
|
2346
|
-
};
|
|
2347
|
-
}
|
|
2348
|
-
|
|
2349
|
-
/*
|
|
2350
|
-
* Copyright (c) 2018, salesforce.com, inc.
|
|
2351
|
-
* All rights reserved.
|
|
2352
|
-
* SPDX-License-Identifier: MIT
|
|
2353
|
-
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2354
|
-
*/
|
|
2355
|
-
function track(target) {
|
|
2356
|
-
if (arguments.length === 1) {
|
|
2357
|
-
return reactiveMembrane.getProxy(target);
|
|
2358
|
-
}
|
|
2359
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
2360
|
-
assert.fail(`@track decorator can only be used with one argument to return a trackable object, or as a decorator function.`);
|
|
2361
|
-
}
|
|
2362
|
-
throw new Error();
|
|
2363
|
-
}
|
|
2364
|
-
function internalTrackDecorator(key) {
|
|
2321
|
+
function createObservedFieldPropertyDescriptor(key) {
|
|
2365
2322
|
return {
|
|
2366
2323
|
get() {
|
|
2367
2324
|
const vm = getAssociatedVM(this);
|
|
@@ -2370,14 +2327,8 @@ function internalTrackDecorator(key) {
|
|
|
2370
2327
|
},
|
|
2371
2328
|
set(newValue) {
|
|
2372
2329
|
const vm = getAssociatedVM(this);
|
|
2373
|
-
if (
|
|
2374
|
-
|
|
2375
|
-
assert.invariant(!isInvokingRender, `${vmBeingRendered}.render() method has side effects on the state of ${vm}.${toString$1(key)}`);
|
|
2376
|
-
assert.invariant(!isUpdatingTemplate, `Updating the template of ${vmBeingRendered} has side effects on the state of ${vm}.${toString$1(key)}`);
|
|
2377
|
-
}
|
|
2378
|
-
const reactiveOrAnyValue = reactiveMembrane.getProxy(newValue);
|
|
2379
|
-
if (reactiveOrAnyValue !== vm.cmpFields[key]) {
|
|
2380
|
-
vm.cmpFields[key] = reactiveOrAnyValue;
|
|
2330
|
+
if (newValue !== vm.cmpFields[key]) {
|
|
2331
|
+
vm.cmpFields[key] = newValue;
|
|
2381
2332
|
componentValueMutated(vm, key);
|
|
2382
2333
|
}
|
|
2383
2334
|
},
|
|
@@ -2541,7 +2492,22 @@ function createPublicAccessorDescriptor(key, descriptor) {
|
|
|
2541
2492
|
};
|
|
2542
2493
|
}
|
|
2543
2494
|
|
|
2544
|
-
|
|
2495
|
+
/*
|
|
2496
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
2497
|
+
* All rights reserved.
|
|
2498
|
+
* SPDX-License-Identifier: MIT
|
|
2499
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2500
|
+
*/
|
|
2501
|
+
function track(target) {
|
|
2502
|
+
if (arguments.length === 1) {
|
|
2503
|
+
return reactiveMembrane.getProxy(target);
|
|
2504
|
+
}
|
|
2505
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
2506
|
+
assert.fail(`@track decorator can only be used with one argument to return a trackable object, or as a decorator function.`);
|
|
2507
|
+
}
|
|
2508
|
+
throw new Error();
|
|
2509
|
+
}
|
|
2510
|
+
function internalTrackDecorator(key) {
|
|
2545
2511
|
return {
|
|
2546
2512
|
get() {
|
|
2547
2513
|
const vm = getAssociatedVM(this);
|
|
@@ -2550,8 +2516,56 @@ function createObservedFieldPropertyDescriptor(key) {
|
|
|
2550
2516
|
},
|
|
2551
2517
|
set(newValue) {
|
|
2552
2518
|
const vm = getAssociatedVM(this);
|
|
2553
|
-
if (
|
|
2554
|
-
|
|
2519
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
2520
|
+
const vmBeingRendered = getVMBeingRendered();
|
|
2521
|
+
assert.invariant(!isInvokingRender, `${vmBeingRendered}.render() method has side effects on the state of ${vm}.${toString$1(key)}`);
|
|
2522
|
+
assert.invariant(!isUpdatingTemplate, `Updating the template of ${vmBeingRendered} has side effects on the state of ${vm}.${toString$1(key)}`);
|
|
2523
|
+
}
|
|
2524
|
+
const reactiveOrAnyValue = reactiveMembrane.getProxy(newValue);
|
|
2525
|
+
if (reactiveOrAnyValue !== vm.cmpFields[key]) {
|
|
2526
|
+
vm.cmpFields[key] = reactiveOrAnyValue;
|
|
2527
|
+
componentValueMutated(vm, key);
|
|
2528
|
+
}
|
|
2529
|
+
},
|
|
2530
|
+
enumerable: true,
|
|
2531
|
+
configurable: true,
|
|
2532
|
+
};
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
/*
|
|
2536
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
2537
|
+
* All rights reserved.
|
|
2538
|
+
* SPDX-License-Identifier: MIT
|
|
2539
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2540
|
+
*/
|
|
2541
|
+
/**
|
|
2542
|
+
* @wire decorator to wire fields and methods to a wire adapter in
|
|
2543
|
+
* LWC Components. This function implements the internals of this
|
|
2544
|
+
* decorator.
|
|
2545
|
+
*/
|
|
2546
|
+
function wire(_adapter, _config) {
|
|
2547
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
2548
|
+
assert.fail('@wire(adapter, config?) may only be used as a decorator.');
|
|
2549
|
+
}
|
|
2550
|
+
throw new Error();
|
|
2551
|
+
}
|
|
2552
|
+
function internalWireFieldDecorator(key) {
|
|
2553
|
+
return {
|
|
2554
|
+
get() {
|
|
2555
|
+
const vm = getAssociatedVM(this);
|
|
2556
|
+
componentValueObserved(vm, key);
|
|
2557
|
+
return vm.cmpFields[key];
|
|
2558
|
+
},
|
|
2559
|
+
set(value) {
|
|
2560
|
+
const vm = getAssociatedVM(this);
|
|
2561
|
+
/**
|
|
2562
|
+
* Reactivity for wired fields is provided in wiring.
|
|
2563
|
+
* We intentionally add reactivity here since this is just
|
|
2564
|
+
* letting the author to do the wrong thing, but it will keep our
|
|
2565
|
+
* system to be backward compatible.
|
|
2566
|
+
*/
|
|
2567
|
+
if (value !== vm.cmpFields[key]) {
|
|
2568
|
+
vm.cmpFields[key] = value;
|
|
2555
2569
|
componentValueMutated(vm, key);
|
|
2556
2570
|
}
|
|
2557
2571
|
},
|
|
@@ -2806,6 +2820,12 @@ function checkVersionMismatch(func, type) {
|
|
|
2806
2820
|
}
|
|
2807
2821
|
}
|
|
2808
2822
|
|
|
2823
|
+
/*
|
|
2824
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
2825
|
+
* All rights reserved.
|
|
2826
|
+
* SPDX-License-Identifier: MIT
|
|
2827
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2828
|
+
*/
|
|
2809
2829
|
const signedTemplateSet = new Set();
|
|
2810
2830
|
function defaultEmptyTemplate() {
|
|
2811
2831
|
return [];
|
|
@@ -2823,6 +2843,30 @@ function registerTemplate(tpl) {
|
|
|
2823
2843
|
checkVersionMismatch(tpl, 'template');
|
|
2824
2844
|
}
|
|
2825
2845
|
signedTemplateSet.add(tpl);
|
|
2846
|
+
// FIXME[@W-10950976]: the template object should be frozen, and it should not be possible to set
|
|
2847
|
+
// the stylesheets or stylesheetToken(s). For backwards compat, though, we shim stylesheetTokens
|
|
2848
|
+
// on top of stylesheetToken for anyone who is accessing the old internal API.
|
|
2849
|
+
// Details: https://salesforce.quip.com/v1rmAFu2cKAr
|
|
2850
|
+
defineProperty(tpl, 'stylesheetTokens', {
|
|
2851
|
+
get() {
|
|
2852
|
+
const { stylesheetToken } = this;
|
|
2853
|
+
if (isUndefined$1(stylesheetToken)) {
|
|
2854
|
+
return stylesheetToken;
|
|
2855
|
+
}
|
|
2856
|
+
// Shim for the old `stylesheetTokens` property
|
|
2857
|
+
// See https://github.com/salesforce/lwc/pull/2332/files#diff-7901555acef29969adaa6583185b3e9bce475cdc6f23e799a54e0018cb18abaa
|
|
2858
|
+
return {
|
|
2859
|
+
hostAttribute: `${stylesheetToken}-host`,
|
|
2860
|
+
shadowAttribute: stylesheetToken,
|
|
2861
|
+
};
|
|
2862
|
+
},
|
|
2863
|
+
set(value) {
|
|
2864
|
+
// If the value is null or some other exotic object, you would be broken anyway in the past
|
|
2865
|
+
// because the engine would try to access hostAttribute/shadowAttribute, which would throw an error.
|
|
2866
|
+
// However it may be undefined in newer versions of LWC, so we need to guard against that case.
|
|
2867
|
+
this.stylesheetToken = isUndefined$1(value) ? undefined : value.shadowAttribute;
|
|
2868
|
+
},
|
|
2869
|
+
});
|
|
2826
2870
|
// chaining this method as a way to wrap existing
|
|
2827
2871
|
// assignment of templates easily, without too much transformation
|
|
2828
2872
|
return tpl;
|
|
@@ -2985,20 +3029,6 @@ const BaseBridgeElement = HTMLBridgeElementFactory(HTMLElementConstructor, getOw
|
|
|
2985
3029
|
freeze(BaseBridgeElement);
|
|
2986
3030
|
seal(BaseBridgeElement.prototype);
|
|
2987
3031
|
|
|
2988
|
-
/*
|
|
2989
|
-
* Copyright (c) 2020, salesforce.com, inc.
|
|
2990
|
-
* All rights reserved.
|
|
2991
|
-
* SPDX-License-Identifier: MIT
|
|
2992
|
-
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2993
|
-
*/
|
|
2994
|
-
function resolveCircularModuleDependency(fn) {
|
|
2995
|
-
const module = fn();
|
|
2996
|
-
return (module === null || module === void 0 ? void 0 : module.__esModule) ? module.default : module;
|
|
2997
|
-
}
|
|
2998
|
-
function isCircularModuleDependency(obj) {
|
|
2999
|
-
return isFunction$1(obj) && hasOwnProperty$1.call(obj, '__circular__');
|
|
3000
|
-
}
|
|
3001
|
-
|
|
3002
3032
|
/*
|
|
3003
3033
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
3004
3034
|
* All rights reserved.
|
|
@@ -5236,20 +5266,9 @@ function removeVM(vm) {
|
|
|
5236
5266
|
|
|
5237
5267
|
resetComponentStateWhenRemoved(vm);
|
|
5238
5268
|
}
|
|
5239
|
-
|
|
5240
|
-
function getNearestShadowAncestor(vm) {
|
|
5241
|
-
let ancestor = vm.owner;
|
|
5242
|
-
|
|
5243
|
-
while (!isNull(ancestor) && ancestor.renderMode === 0
|
|
5244
|
-
/* Light */
|
|
5245
|
-
) {
|
|
5246
|
-
ancestor = ancestor.owner;
|
|
5247
|
-
}
|
|
5248
|
-
|
|
5249
|
-
return ancestor;
|
|
5250
|
-
}
|
|
5251
|
-
|
|
5252
5269
|
function createVM(elm, ctor, options) {
|
|
5270
|
+
var _a;
|
|
5271
|
+
|
|
5253
5272
|
const {
|
|
5254
5273
|
mode,
|
|
5255
5274
|
owner,
|
|
@@ -5277,6 +5296,8 @@ function createVM(elm, ctor, options) {
|
|
|
5277
5296
|
oar: create(null),
|
|
5278
5297
|
cmpTemplate: null,
|
|
5279
5298
|
renderMode: def.renderMode,
|
|
5299
|
+
shadowMode: computeShadowMode(def, owner),
|
|
5300
|
+
nearestShadowMode: (owner === null || owner === void 0 ? void 0 : owner.shadowRoot) ? owner.shadowMode : (_a = owner === null || owner === void 0 ? void 0 : owner.nearestShadowMode) !== null && _a !== void 0 ? _a : null,
|
|
5280
5301
|
context: {
|
|
5281
5302
|
stylesheetToken: undefined,
|
|
5282
5303
|
hasTokenInClass: undefined,
|
|
@@ -5289,7 +5310,6 @@ function createVM(elm, ctor, options) {
|
|
|
5289
5310
|
},
|
|
5290
5311
|
// Properties set right after VM creation.
|
|
5291
5312
|
tro: null,
|
|
5292
|
-
shadowMode: null,
|
|
5293
5313
|
// Properties set by the LightningElement constructor.
|
|
5294
5314
|
component: null,
|
|
5295
5315
|
shadowRoot: null,
|
|
@@ -5298,7 +5318,6 @@ function createVM(elm, ctor, options) {
|
|
|
5298
5318
|
setHook,
|
|
5299
5319
|
getHook
|
|
5300
5320
|
};
|
|
5301
|
-
vm.shadowMode = computeShadowMode(vm);
|
|
5302
5321
|
vm.tro = getTemplateReactiveObserver(vm);
|
|
5303
5322
|
|
|
5304
5323
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -5323,10 +5342,9 @@ function createVM(elm, ctor, options) {
|
|
|
5323
5342
|
return vm;
|
|
5324
5343
|
}
|
|
5325
5344
|
|
|
5326
|
-
function computeShadowMode(
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
} = vm;
|
|
5345
|
+
function computeShadowMode(def, owner) {
|
|
5346
|
+
var _a;
|
|
5347
|
+
|
|
5330
5348
|
let shadowMode;
|
|
5331
5349
|
|
|
5332
5350
|
if (isSyntheticShadowDefined$1) {
|
|
@@ -5349,23 +5367,13 @@ function computeShadowMode(vm) {
|
|
|
5349
5367
|
/* Native */
|
|
5350
5368
|
;
|
|
5351
5369
|
} else {
|
|
5352
|
-
|
|
5353
|
-
|
|
5354
|
-
if
|
|
5355
|
-
|
|
5356
|
-
)
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
shadowMode = 0
|
|
5360
|
-
/* Native */
|
|
5361
|
-
;
|
|
5362
|
-
} else {
|
|
5363
|
-
// Synthetic if neither this component nor any of its ancestors are configured
|
|
5364
|
-
// to be native.
|
|
5365
|
-
shadowMode = 1
|
|
5366
|
-
/* Synthetic */
|
|
5367
|
-
;
|
|
5368
|
-
}
|
|
5370
|
+
// Transitive support for native Shadow DOM. A component in native mode
|
|
5371
|
+
// transitively opts all of its descendants into native.
|
|
5372
|
+
// Synthetic if neither this component nor any of its ancestors are configured
|
|
5373
|
+
// to be native.
|
|
5374
|
+
shadowMode = (_a = owner === null || owner === void 0 ? void 0 : owner.nearestShadowMode) !== null && _a !== void 0 ? _a : 1
|
|
5375
|
+
/* Synthetic */
|
|
5376
|
+
;
|
|
5369
5377
|
}
|
|
5370
5378
|
} else {
|
|
5371
5379
|
shadowMode = 1
|
|
@@ -6145,7 +6153,7 @@ function setHooks(hooks) {
|
|
|
6145
6153
|
hooksAreSet = true;
|
|
6146
6154
|
setSanitizeHtmlContentHook(hooks.sanitizeHtmlContent);
|
|
6147
6155
|
}
|
|
6148
|
-
/* version: 2.13.
|
|
6156
|
+
/* version: 2.13.3 */
|
|
6149
6157
|
|
|
6150
6158
|
/*
|
|
6151
6159
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -6612,7 +6620,7 @@ function renderComponent(tagName, Ctor, props = {}) {
|
|
|
6612
6620
|
*/
|
|
6613
6621
|
freeze(LightningElement);
|
|
6614
6622
|
seal(LightningElement.prototype);
|
|
6615
|
-
/* version: 2.13.
|
|
6623
|
+
/* version: 2.13.3 */
|
|
6616
6624
|
|
|
6617
6625
|
exports.LightningElement = LightningElement;
|
|
6618
6626
|
exports.api = api$1;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";function v(a,b){if(!a)throw new Error(`Invariant Violation: ${b}`)}function w(a,b){if(!a)throw new Error(`Assert Violation: ${b}`)}function x(a,b){if(a)throw new Error(`Assert Violation: ${b}`)}function y(a){throw new Error(a)}Object.defineProperty(exports,"__esModule",{value:!0});var i,bP=Object.freeze({__proto__:null,invariant:v,isTrue:w,isFalse:x,fail:y});const{assign:z,create:b,defineProperties:q,defineProperty:j,freeze:k,getOwnPropertyDescriptor:bQ,getOwnPropertyNames:A,getPrototypeOf:bR,hasOwnProperty:bS,isFrozen:bT,keys:B,seal:f,setPrototypeOf:bU}=Object,{isArray:bV}=Array,{filter:bW,find:bX,indexOf:bY,join:bZ,map:b$,push:b_,reduce:b0,reverse:b1,slice:b2,splice:b3,unshift:b4,forEach:r}=Array.prototype,{fromCharCode:b5}=String,{charCodeAt:b6,replace:b7,slice:b8,toLowerCase:b9}=String.prototype;function ca(a){return void 0===a}function cb(a){return null===a}function cc(a){return!0===a}function cd(a){return!1===a}function ce(a){return"boolean"==typeof a}function cf(a){return"function"==typeof a}function cg(a){return"object"==typeof a}function ch(a){return"string"==typeof a}function g(){}const ci={}.toString;function cj(a){return a&&a.toString?bV(a)?bZ.call(b$.call(a,cj),","):a.toString():"object"==typeof a?ci.call(a):a+""}function ck(a,c){do{const b=bQ(a,c);if(!ca(b))return b;a=bR(a)}while(null!==a)}const cl=["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:cm,AriaPropNameToAttrNameMap:C}=(()=>{const a=b(null),c=b(null);return r.call(cl,b=>{const d=b9.call(b7.call(b,/^aria/,()=>"aria-"));a[d]=b,c[b]=d}),{AriaAttrNameToPropNameMap:a,AriaPropNameToAttrNameMap:c}})();function cn(a){return a in cm}const e=function(){if("object"==typeof globalThis)return globalThis;let a;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),a=__magic__,delete Object.prototype.__magic__}catch(b){}finally{void 0===a&&(a=window)}return a}(),co="$shadowResolver$",cp="$$lwc-synthetic-mode",cq="$scoped$",D=["area","base","br","circle","col","ellipse","feBlend","feColorMatrix","feFuncR","feFuncG","feFuncB","feFuncA","feImage","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feGaussianBlur","feMerge","feMergeNode","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","fePointLight","embed","hr","img","input","keygen","line","link","menuitem","meta","param","path","rect","source","track","wbr",],cr=new Set(D);function cs(a){return cr.has(a)}const ct=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 cu(b,c){const a=ct.get(b);return void 0!==a&&(0===a.size||a.has(c))}const cv=new Set(["role","accesskey","class","contenteditable","contextmenu","dir","draggable","dropzone","hidden","id","itemprop","lang","slot","spellcheck","style","tabindex","title",]);function cw(a){return cv.has(a)}const cx=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"],]),cy=new Map;function cz(a){const e=C[a];if(!ca(e))return e;const f=cx.get(a);if(!ca(f))return f;const g=cy.get(a);if(!ca(g))return g;let b="";for(let d=0,h=a.length;d<h;d++){const c=b6.call(a,d);c>=65&&c<=90?b+="-"+b5(c+32):b+=b5(c)}return cy.set(a,b),b}const cA="http://www.w3.org/XML/1998/namespace",cB="http://www.w3.org/2000/svg",cC="http://www.w3.org/1999/xlink";if("function"!=typeof Event){class E{}j(e,"Event",{value:E,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class F extends Event{}j(e,"CustomEvent",{value:F,configurable:!0,writable:!0})}const cD={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};e.lwcRuntimeFlags||Object.defineProperty(e,"lwcRuntimeFlags",{value:b(null)});const cE=e.lwcRuntimeFlags;function G(a,b){if(!ce(b)){const d=`Failed to set the value "${b}" for the runtime feature flag "${a}". Runtime feature flags can only be set to a boolean value.`;console.error(d);return}if(ca(cD[a])){const e=B(cD).map(a=>`"${a}"`).join(", ");console.warn(`Failed to set the value "${b}" for the runtime feature flag "${a}" because it is undefined. Available flags: ${e}.`);return}{const c=cE[a];if(!ca(c)){console.error(`Failed to set the value "${b}" for the runtime feature flag "${a}". "${a}" has already been set with the value "${c}".`);return}j(cE,a,{value:b})}}function H(a,b){}let cF=[];const cG=32,d=f(b(null)),cH=f([]);function cI(){const b=cF;cF=[];for(let a=0,c=b.length;a<c;a+=1)b[a]()}function cJ(a){0===cF.length&&Promise.resolve().then(cI),b_.call(cF,a)}function cK(){function a(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return a()+a()+"-"+a()+"-"+a()+"-"+a()+"-"+a()+a()+a()}let cL;function I(a){cL=a}let cM;function J(a){cM=a}let cN;function K(a){cN=a}let cO;function L(a){cO=a}let cP;function M(a){cP=a}let cQ;function N(a){cQ=a}let cR;function O(a){cR=a}let cS;function P(a){cS=a}let cT;function Q(a){cT=a}let cU;function R(a){cU=a}let cV;function S(a){cV=a}let cW;function T(a){cW=a}let cX;function U(a){cX=a}let cY;function V(a){cY=a}let cZ;function W(a){cZ=a}let c$;function X(a){c$=a}let c_;function Y(a){c_=a}let c0;function Z(a){c0=a}let c1;function $(a){c1=a}let c2;function _(a){c2=a}let c3;function aa(a){c3=a}let ab;function ac(a){ab=a}let c4;function ad(a){c4=a}let c5;function ae(a){c5=a}let c6;function af(a){c6=a}let c7;function ag(a){c7=a}let c8;function ah(a){c8=a}let c9;function ai(a){c9=a}let da;function aj(a){da=a}let db;function ak(a){db=a}let dc;function al(a){dc=a}let dd;function am(a){dd=a}let de;function an(a){de=a}let df;function ao(a){df=a}let ap;function aq(a){ap=a}let dg;function ar(a){dg=a}let dh;function as(a){dh=a}let di;function at(a){di=a}let dj;function au(a){dj=a}const dk=new WeakMap;function dl(c){let a=dk.get(c);if(ca(a)){const d=b(null);a=d,dk.set(c,d)}return a}let dm=null;function av(d,e){const c=dk.get(d);if(!ca(c)){const a=c[e];if(!ca(a))for(let b=0,f=a.length;b<f;b+=1){const g=a[b];g.notify()}}}function aw(e,c){if(null===dm)return;const b=dm,d=dl(e);let a=d[c];if(ca(a))a=[],d[c]=a;else if(a[0]===b)return;-1===bY.call(a,b)&&b.link(a)}class ax{constructor(a){this.listeners=[],this.callback=a}observe(b){const c=dm;dm=this;let a;try{b()}catch(d){a=Object(d)}finally{if(dm=c,void 0!==a)throw a}}reset(){const{listeners:a}=this,c=a.length;if(c>0){for(let b=0;b<c;b+=1){const d=a[b],e=bY.call(a[b],this);b3.call(d,e,1)}a.length=0}}notify(){this.callback.call(void 0,this)}link(a){b_.call(a,this),b_.call(this.listeners,a)}}function dn(a,b){av(a.component,b)}function dp(a,b){aw(a.component,b)}function dq(a){return`<${b9.call(a.tagName)}>`}function dr(c){const b=[];let a=c;for(;!cb(a);)b_.call(b,dq(a)),a=a.owner;return b.reverse().join("\n ")}function ds(b,a){if(!bT(a)&&ca(a.wcStack)){const c=dr(b);j(a,"wcStack",{get:()=>c})}}const s="undefined"!=typeof HTMLElement?HTMLElement:function(){},dt=s.prototype,ay=["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title",];function h(a){return`Using the \`${a}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}z(b(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:h("offsetHeight")},offsetLeft:{readOnly:!0,error:h("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:h("offsetTop")},offsetWidth:{readOnly:!0,error:h("offsetWidth")},role:{attribute:"role"}});let du=null,dv;function dw(a,b){return a!==du||b!==dv}function dx(a,b){du=null,dv=void 0}function dy(a,b){du=a,dv=b}const l=b(null);r.call(B(C),a=>{const b=ck(dt,a);ca(b)||(l[a]=b)}),r.call(ay,a=>{const b=ck(dt,a);ca(b)||(l[a]=b)});const{isArray:dz}=Array,{prototype:dA,getPrototypeOf:dB,create:dC,defineProperty:dD,isExtensible:dE,getOwnPropertyDescriptor:dF,getOwnPropertyNames:dG,getOwnPropertySymbols:dH,preventExtensions:dI,hasOwnProperty:dJ}=Object,{push:dK,concat:dL}=Array.prototype;function dM(a){return void 0===a}function dN(a){return"function"==typeof a}const dO=new WeakMap;function dP(a,b){dO.set(a,b)}const dQ=a=>dO.get(a)||a;class t{constructor(a,b){this.originalTarget=b,this.membrane=a}wrapDescriptor(a){if(dJ.call(a,"value"))a.value=this.wrapValue(a.value);else{const{set:b,get:c}=a;dM(c)||(a.get=this.wrapGetter(c)),dM(b)||(a.set=this.wrapSetter(b))}return a}copyDescriptorIntoShadowTarget(c,a){const{originalTarget:d}=this,b=dF(d,a);if(!dM(b)){const e=this.wrapDescriptor(b);dD(c,a,e)}}lockShadowTarget(a){const{originalTarget:c}=this,d=dL.call(dG(c),dH(c));d.forEach(b=>{this.copyDescriptorIntoShadowTarget(a,b)});const{membrane:{tagPropertyKey:b}}=this;dM(b)||dJ.call(a,b)||dD(a,b,dC(null)),dI(a)}apply(a,b,c){}construct(a,b,c){}get(e,a){const{originalTarget:b,membrane:{valueObserved:c}}=this,d=b[a];return c(b,a),this.wrapValue(d)}has(e,a){const{originalTarget:b,membrane:{tagPropertyKey:c,valueObserved:d}}=this;return d(b,a),a in b||a===c}ownKeys(d){const{originalTarget:a,membrane:{tagPropertyKey:b}}=this,c=dM(b)||dJ.call(a,b)?[]:[b];return dK.apply(c,dG(a)),dK.apply(c,dH(a)),c}isExtensible(a){const{originalTarget:b}=this;return!!dE(a)&&(!!dE(b)||(this.lockShadowTarget(a),!1))}getPrototypeOf(b){const{originalTarget:a}=this;return dB(a)}getOwnPropertyDescriptor(c,b){const{originalTarget:d,membrane:{valueObserved:f,tagPropertyKey:e}}=this;f(d,b);let a=dF(d,b);if(dM(a)){if(b!==e)return;return dD(c,e,a={value:void 0,writable:!1,configurable:!1,enumerable:!1}),a}return!1===a.configurable&&this.copyDescriptorIntoShadowTarget(c,b),this.wrapDescriptor(a)}}const dR=new WeakMap,dS=new WeakMap,dT=new WeakMap,dU=new WeakMap;class dV extends t{wrapValue(a){return this.membrane.getProxy(a)}wrapGetter(a){const c=dR.get(a);if(!dM(c))return c;const d=this,b=function(){return d.wrapValue(a.call(dQ(this)))};return dR.set(a,b),dT.set(b,a),b}wrapSetter(a){const c=dS.get(a);if(!dM(c))return c;const b=function(b){a.call(dQ(this),dQ(b))};return dS.set(a,b),dU.set(b,a),b}unwrapDescriptor(a){if(dJ.call(a,"value"))a.value=dQ(a.value);else{const{set:b,get:c}=a;dM(c)||(a.get=this.unwrapGetter(c)),dM(b)||(a.set=this.unwrapSetter(b))}return a}unwrapGetter(a){const c=dT.get(a);if(!dM(c))return c;const d=this,b=function(){return dQ(a.call(d.wrapValue(this)))};return dR.set(b,a),dT.set(a,b),b}unwrapSetter(a){const c=dU.get(a);if(!dM(c))return c;const d=this,b=function(b){a.call(d.wrapValue(this),d.wrapValue(b))};return dS.set(b,a),dU.set(a,b),b}set(f,a,c){const{originalTarget:b,membrane:{valueMutated:d}}=this,e=b[a];return e!==c?(b[a]=c,d(b,a)):"length"===a&&dz(b)&&d(b,a),!0}deleteProperty(d,a){const{originalTarget:b,membrane:{valueMutated:c}}=this;return delete b[a],c(b,a),!0}setPrototypeOf(a,b){}preventExtensions(a){if(dE(a)){const{originalTarget:b}=this;if(dI(b),dE(b))return!1;this.lockShadowTarget(a)}return!0}defineProperty(d,a,c){const{originalTarget:b,membrane:{valueMutated:e,tagPropertyKey:f}}=this;return!(a!==f||dJ.call(b,a))||(dD(b,a,this.unwrapDescriptor(c)),!1===c.configurable&&this.copyDescriptorIntoShadowTarget(d,a),e(b,a),!0)}}const dW=new WeakMap,dX=new WeakMap;class dY extends t{wrapValue(a){return this.membrane.getReadOnlyProxy(a)}wrapGetter(a){const b=dW.get(a);if(!dM(b))return b;const d=this,c=function(){return d.wrapValue(a.call(dQ(this)))};return dW.set(a,c),c}wrapSetter(a){const b=dX.get(a);if(!dM(b))return b;const c=function(a){};return dX.set(a,c),c}set(a,b,c){return!1}deleteProperty(a,b){return!1}setPrototypeOf(a,b){}preventExtensions(a){return!1}defineProperty(a,b,c){return!1}}function dZ(a){if(null===a)return!1;if("object"!=typeof a)return!1;if(dz(a))return!0;const b=dB(a);return b===dA||null===b||null===dB(b)}const d$=(a,b)=>{},d_=(a,b)=>{};function d0(a){return dz(a)?[]:{}}class az{constructor(d={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:a,valueObserved:b,valueIsObservable:c,tagPropertyKey:e}=d;this.valueMutated=dN(a)?a:d_,this.valueObserved=dN(b)?b:d$,this.valueIsObservable=dN(c)?c:dZ,this.tagPropertyKey=e}getProxy(b){const a=dQ(b);return this.valueIsObservable(a)?this.readOnlyObjectGraph.get(a)===b?b:this.getReactiveHandler(a):a}getReadOnlyProxy(a){return(a=dQ(a),this.valueIsObservable(a))?this.getReadOnlyHandler(a):a}unwrapProxy(a){return dQ(a)}getReactiveHandler(a){let b=this.reactiveObjectGraph.get(a);if(dM(b)){const c=new dV(this,a);dP(b=new Proxy(d0(a),c),a),this.reactiveObjectGraph.set(a,b)}return b}getReadOnlyHandler(a){let b=this.readOnlyObjectGraph.get(a);if(dM(b)){const c=new dY(this,a);dP(b=new Proxy(d0(a),c),a),this.readOnlyObjectGraph.set(a,b)}return b}}const aA=Symbol.for("@@lockerLiveValue"),d1=new az({valueObserved:aw,valueMutated:av,tagPropertyKey:aA});function aB(a){return d1.unwrapProxy(a)}function aC(f,a){const{get:b,set:c,enumerable:d,configurable:e}=a;if(!cf(b))throw new TypeError;if(!cf(c))throw new TypeError;return{enumerable:d,configurable:e,get(){const a=f4(this);if(!fC(a))return dp(a,f),b.call(a.elm)},set(b){const a=f4(this);return b!==a.cmpProps[f]&&(a.cmpProps[f]=b,dn(a,f)),c.call(a.elm,b)}}}const c=function(){if(cb(fB))throw new ReferenceError("Illegal constructor");const a=fB,{def:c,elm:b}=a,{bridge:d}=c;if(bU(b,d.prototype),a.component=this,1===arguments.length){const{callHook:e,setHook:f,getHook:g}=arguments[0];a.callHook=e,a.setHook=f,a.getHook=g}return this[aA]=void 0,f3(this,a),f3(b,a),1===a.renderMode?a.renderRoot=d2(a):a.renderRoot=b,this};function d2(a){const{elm:c,mode:d,shadowMode:e,def:{ctor:f}}=a,b=cW(c,{["$$lwc-synthetic-mode"]:1===e,delegatesFocus:Boolean(f.delegatesFocus),mode:d});return a.shadowRoot=b,f3(b,a),b}c.prototype={constructor:c,dispatchEvent(a){const{elm:b}=f4(this);return c3(b,a)},addEventListener(b,c,d){const a=f4(this),{elm:e}=a,f=fN(a,c);c1(e,b,f,d)},removeEventListener(b,c,d){const a=f4(this),{elm:e}=a,f=fN(a,c);c2(e,b,f,d)},hasAttribute(a){const{elm:b}=f4(this);return!cb(c$(b,a))},hasAttributeNS(a,b){const{elm:c}=f4(this);return!cb(c$(c,b,a))},removeAttribute(a){const{elm:b}=f4(this);dy(b,a),c0(b,a),dx()},removeAttributeNS(c,a){const{elm:b}=f4(this);dy(b,a),c0(b,a,c),dx()},getAttribute(a){const{elm:b}=f4(this);return c$(b,a)},getAttributeNS(a,b){const{elm:c}=f4(this);return c$(c,b,a)},setAttribute(a,c){const d=f4(this),{elm:b}=d;dy(b,a),c_(b,a,c),dx()},setAttributeNS(c,a,d){const e=f4(this),{elm:b}=e;dy(b,a),c_(b,a,d,c),dx()},getBoundingClientRect(){const a=f4(this),{elm:b}=a;return c5(b)},get isConnected(){const{elm:aD}=f4(this);return ap(aD)},get classList(){const aE=f4(this),{elm:aF}=aE;return ab(aF)},get template(){const aG=f4(this);return aG.shadowRoot},get shadowRoot(){return null},render(){const a=f4(this);return a.def.template},toString(){const a=f4(this);return`[object ${a.def.name}]`}};const m=b(null),aH=["children","childNodes","firstChild","firstElementChild","lastChild","lastElementChild",];function d3(a){switch(a){case"children":return da;case"childNodes":return db;case"firstChild":return dc;case"firstElementChild":return dd;case"lastChild":return de;case"lastElementChild":return df}}for(const aI of aH)m[aI]={get(){const a=f4(this),{elm:b}=a;return d3(aI)(b)},configurable:!0,enumerable:!0};const aJ=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll",];function d4(a){switch(a){case"getElementsByClassName":return c9;case"getElementsByTagName":return c8;case"querySelector":return c6;case"querySelectorAll":return c7}}for(const aK of aJ)m[aK]={value(a){const b=f4(this),{elm:c}=b;return d4(aK)(c,a)},configurable:!0,enumerable:!0,writable:!0};q(c.prototype,m);const n=b(null);for(const o in l)n[o]=aC(o,l[o]);function aL(a,b){throw new Error}function d5(a){return{get(){const b=f4(this);return dp(b,a),b.cmpFields[a]},set(c){const b=f4(this);c!==b.cmpFields[a]&&(b.cmpFields[a]=c,dn(b,a))},enumerable:!0,configurable:!0}}function aM(a){if(1===arguments.length)return d1.getProxy(a);throw new Error}function d6(a){return{get(){const b=f4(this);return dp(b,a),b.cmpFields[a]},set(d){const b=f4(this),c=d1.getProxy(d);c!==b.cmpFields[a]&&(b.cmpFields[a]=c,dn(b,a))},enumerable:!0,configurable:!0}}function aN(){throw new Error}function d7(a){return{get(){const b=f4(this);if(!fC(b))return dp(b,a),b.cmpProps[a]},set(c){const b=f4(this);b.cmpProps[a]=c,dn(b,a)},enumerable:!0,configurable:!0}}q(c.prototype,n),j(c,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class d8 extends ax{constructor(a,b){super(()=>{cd(this.debouncing)&&(this.debouncing=!0,cJ(()=>{if(cc(this.debouncing)){const{value:c}=this,{isDirty:d,component:e,idx:f}=a;b.call(e,c),this.debouncing=!1,cc(a.isDirty)&&cd(d)&&f>0&&fW(a)}}))}),this.debouncing=!1}reset(a){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=a)}}function d9(e,a){const{get:b,set:f,enumerable:c,configurable:d}=a;if(!cf(b))throw new Error;return{get(){return b.call(this)},set(c){const b=f4(this);if(f)if(cE.ENABLE_REACTIVE_SETTER){let a=b.oar[e];ca(a)&&(a=b.oar[e]=new d8(b,f)),a.reset(c),a.observe(()=>{f.call(this,c)})}else f.call(this,c)},enumerable:c,configurable:d}}function ea(a){return{get(){const b=f4(this);return dp(b,a),b.cmpFields[a]},set(c){const b=f4(this);c!==b.cmpFields[a]&&(b.cmpFields[a]=c,dn(b,a))},enumerable:!0,configurable:!0}}function aO(i,z){const d=i.prototype,{publicProps:f,publicMethods:o,wire:k,track:h,fields:l}=z,A=b(null),p=b(null),q=b(null),s=b(null),t=b(null),u=b(null);let a;if(!ca(f))for(const c in f){const v=f[c];if(u[c]=v.config,a=bQ(d,c),v.config>0){if(ca(a))throw new Error;a=d9(c,a)}else a=ca(a)||ca(a.get)?d7(c):d9(c,a);p[c]=a,j(d,c,a)}if(ca(o)||r.call(o,b=>{if(ca(a=bQ(d,b)))throw new Error;A[b]=a}),!ca(k))for(const e in k){const{adapter:w,method:B,config:x,dynamic:y=[]}=k[e];if(a=bQ(d,e),1===B){if(ca(a))throw new Error;q[e]=a,gx(a,w,x,y)}else a=d5(e),s[e]=a,gy(a,w,x,y),j(d,e,a)}if(!ca(h))for(const m in h)a=bQ(d,m),a=d6(m),j(d,m,a);if(!ca(l))for(let n=0,C=l.length;n<C;n++){const g=l[n];a=bQ(d,g);const D=!ca(f)&&g in f,E=!ca(h)&&g in h;D||E||(t[g]=ea(g))}return ec(i,{apiMethods:A,apiFields:p,apiFieldsConfig:u,wiredMethods:q,wiredFields:s,observedFields:t}),i}const eb=new Map;function ec(a,b){eb.set(a,b)}const ed={apiMethods:d,apiFields:d,apiFieldsConfig:d,wiredMethods:d,wiredFields:d,observedFields:d};function ee(b){const a=eb.get(b);return ca(a)?ed:a}const aP=new Set;function u(){return[]}function ef(a){return aP.has(a)}function aQ(a){return aP.add(a),a}function aR(b,c,d,a){return a}aP.add(u);const eg=b(null),eh=b(null);function ei(b){let a=eg[b];return ca(a)&&(a=eg[b]=function(){const a=f4(this),{getHook:c}=a;return c(a.component,b)}),a}function ej(b){let a=eh[b];return ca(a)&&(a=eh[b]=function(a){const c=f4(this),{setHook:d}=c;a=d1.getReadOnlyProxy(a),d(c.component,b,a)}),a}function ek(a){return function(){const b=f4(this),{callHook:c,component:d}=b,e=d[a];return c(b.component,e,b2.call(arguments))}}function el(a,b){return function(c,f,d){if(f===d)return;const e=a[c];if(ca(e)){ca(b)||b.apply(this,arguments);return}dw(this,c)&&(this[e]=d)}}function aS(c,h,i){let a;cf(c)?a=class extends c{}:(bU(a=function(){throw new TypeError("Illegal constructor")},c),bU(a.prototype,c.prototype),j(a.prototype,"constructor",{writable:!0,configurable:!0,value:a}));const k=b(null),{attributeChangedCallback:m}=c.prototype,{observedAttributes:p=[]}=c,e=b(null);for(let f=0,n=h.length;f<n;f+=1){const d=h[f];k[cz(d)]=d,e[d]={get:ei(d),set:ej(d),enumerable:!0,configurable:!0}}for(let g=0,o=i.length;g<o;g+=1){const l=i[g];e[l]={value:ek(l),writable:!0,configurable:!0}}return e.attributeChangedCallback={value:el(k,m)},j(a,"observedAttributes",{get:()=>[...p,...B(k)]}),q(a.prototype,e),a}const p=aS(s,A(l),[]);function em(b){const a=b();return(null==a?void 0:a.__esModule)?a.default:a}function en(a){return cf(a)&&bS.call(a,"__circular__")}function eo(a){throw new ReferenceError}k(p),f(p.prototype);const ep=new WeakMap;function eq(b){let a=bR(b);if(cb(a))throw new ReferenceError(`Invalid prototype chain for ${b.name}, you must extend LightningElement.`);if(en(a)){const d=em(a);a=d===a?c:d}return a}function er(d){const{shadowSupportMode:j,renderMode:k}=d,s=ee(d),{apiFields:l,apiFieldsConfig:t,apiMethods:m,wiredFields:u,wiredMethods:v,observedFields:w}=s,n=d.prototype;let{connectedCallback:e,disconnectedCallback:f,renderedCallback:g,errorCallback:h,render:i}=n;const o=eq(d),a=o!==c?es(o):et,x=aS(a.bridge,B(l),B(m)),y=z(b(null),a.props,l),A=z(b(null),a.propsConfig,t),C=z(b(null),a.methods,m),D=z(b(null),a.wire,u,v);e=e||a.connectedCallback,f=f||a.disconnectedCallback,g=g||a.renderedCallback,h=h||a.errorCallback,i=i||a.render;let p=a.shadowSupportMode;ca(j)||(p=j);let r=a.renderMode;ca(k)||(r="light"===k?0:1);const E=fI(d)||a.template,F=d.name||a.name;return q(n,w),{ctor:d,name:F,wire:D,props:y,propsConfig:A,methods:C,bridge:x,template:E,renderMode:r,shadowSupportMode:p,connectedCallback:e,disconnectedCallback:f,renderedCallback:g,errorCallback:h,render:i}}function aT(b){if(!cf(b))return!1;if(b.prototype instanceof c)return!0;let a=b;do{if(en(a)){const d=em(a);if(d===a)return!0;a=d}if(a===c)return!0}while(!cb(a)&&(a=bR(a)))return!1}function es(a){let b=ep.get(a);if(ca(b)){if(en(a)){const c=em(a);return b=es(c),ep.set(a,b),b}if(!aT(a))throw new TypeError(`${a} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);b=er(a),ep.set(a,b)}return b}const et={ctor:c,name:c.name,props:n,propsConfig:d,methods:d,renderMode:1,shadowSupportMode:"reset",wire:d,bridge:p,template:u,render:c.prototype.render};function aU(f){const g=es(f),{ctor:h,name:i,props:j,propsConfig:k,methods:b}=g,c={};for(const a in j)c[a]={config:k[a]||0,type:"any",attr:cz(a)};const d={};for(const e in b)d[e]=b[e].value;return{ctor:h,name:i,props:c,methods:d}}function eu(a){let b=dj(a=a.toLowerCase());return ca(b)&&di(a,b=class extends cO{constructor(a){super(),cf(a)&&a(this)}}),b}function ev(b){const{type:a}=b;return 2===a||3===a}function ew(a,b){return a.key===b.key&&a.sel===b.sel}const ex=58;function ey(f,g){const{attrs:e}=g.data;if(ca(e))return;const h=cb(f)?d:f.data.attrs;if(h===e)return;const{elm:c}=g;for(const a in e){const b=e[a],i=h[a];i!==b&&(dy(c,a),58===b6.call(a,3)?c_(c,a,b,"http://www.w3.org/XML/1998/namespace"):58===b6.call(a,5)?c_(c,a,b,"http://www.w3.org/1999/xlink"):cb(b)||ca(b)?c0(c,a):c_(c,a,b),dx())}}function ez(b,a){return"input"===b&&("value"===a||"checked"===a)}function eA(c,e){const{props:b}=e.data;if(ca(b))return;const f=cb(c)?d:c.data.props;if(f===b)return;const i=cb(c),{elm:g,sel:j}=e;for(const a in b){const h=b[a];(i||h!==(ez(j,a)?cX(g,a):f[a]))&&cY(g,a,h)}}const eB=b(null);function eC(a){if(null==a)return d;let e=eB[a=ch(a)?a:a+""];if(e)return e;e=b(null);let f=0,c;const g=a.length;for(c=0;c<g;c++)32===b6.call(a,c)&&(c>f&&(e[b8.call(a,f,c)]=!0),f=c+1);return c>f&&(e[b8.call(a,f,c)]=!0),eB[a]=e,e}function eD(b,h){const{elm:i,data:{className:c}}=h,d=cb(b)?void 0:b.data.className;if(d===c)return;const e=ab(i),f=eC(c),g=eC(d);let a;for(a in g)ca(f[a])&&e.remove(a);for(a in f)ca(g[a])&&e.add(a)}function eE(b,d){const{elm:c,data:{style:a}}=d,e=cb(b)?void 0:b.data.style;e!==a&&(ch(a)&&""!==a?c_(c,"style",a):c0(c,"style"))}function eF(c){const{elm:d,data:{on:a}}=c;if(!ca(a))for(const b in a){const e=a[b];c1(d,b,e)}}function eG(b){const{elm:c,data:{classMap:a}}=b;if(ca(a))return;const d=ab(c);for(const e in a)d.add(e)}function eH(c){const{elm:d,data:{styleDecls:a}}=c;if(!ca(a))for(let b=0;b<a.length;b++){const[e,f,g]=a[b];c4(d,e,f,g)}}function eI(b,a,c){e9(a)?fb(b,a,c):fc(b,a,c)}function eJ(b,a){if(b!==a)switch(a.type){case 0:eL(b,a);break;case 1:eN(b,a);break;case 2:eQ(b,a);break;case 3:eS(b,a);break}}function eK(a,b,c){switch(a.type){case 0:eM(a,b,c);break;case 1:eO(a,b,c);break;case 2:eP(a,b,c);break;case 3:eR(a,b,c);break}}function eL(b,a){a.elm=b.elm,a.text!==b.text&&e_(a)}function eM(a,c,d){const{owner:e}=a,b=a.elm=cT(a.text);e$(b,e),e0(b,c,d)}function eN(b,a){a.elm=b.elm,a.text!==b.text&&e_(a)}function eO(a,c,d){const{owner:e}=a,b=a.elm=cU(a.text);e$(b,e),e0(b,c,d)}function eP(a,c,d){const{sel:e,owner:f,data:{svg:g}}=a,h=cc(g)?"http://www.w3.org/2000/svg":void 0,b=cS(e,h);e$(b,f),e3(b,a),a.elm=b,e2(null,a),e0(b,c,d),eT(a.children,b,null)}function eQ(a,b){const c=b.elm=a.elm;e2(a,b),eI(a.children,b.children,c)}function eR(a,e,f){const{sel:g,owner:h}=a,d=eu(g);let b;const c=new d(c=>{b=e5(c,a)});if(e$(c,h),a.elm=c,a.vm=b,b)e4(a,b);else if(a.ctor!==d)throw new TypeError("Incorrect Component Constructor");e2(null,a),e0(c,e,f),b&&gb(b),eT(a.children,c,null),b&&fZ(b)}function eS(b,a){const d=a.elm=b.elm,c=a.vm=b.vm;e2(b,a),ca(c)||e4(a,c),eI(b.children,a.children,d),ca(c)||fW(c)}function eT(b,d,e,a=0,f=b.length){for(;a<f;++a){const c=b[a];eW(c)&&eK(c,d,e)}}function eU(a,d,e=!1){const{type:f,elm:b}=a;switch(e&&e1(b,d),f){case 2:eV(a.children,b);break;case 3:{const{vm:c}=a;ca(c)||f_(c)}}}function eV(b,d,e=!1,a=0,f=b.length){for(;a<f;++a){const c=b[a];eW(c)&&eU(c,d,e)}}function eW(a){return null!=a}function eX(a){a.$domManual$=!0}function eY(a,b){a.$shadowToken$=b}function eZ(c,d){const{cmpTemplate:a,context:e}=d,b=null==a?void 0:a.stylesheetToken;!ca(b)&&e.hasScopedStyles&&ab(c).add(b)}function e$(a,b){const{renderRoot:c,renderMode:d,shadowMode:e}=b;cN&&(1===e||0===d)&&(a[co]=c[co])}function e_(a){const{elm:b,text:c}=a;cZ(b,c)}function e0(a,b,c){cQ(a,b,c)}function e1(a,b){cR(a,b)}function e2(b,a){cb(b)&&(eF(a),eG(a),eH(a)),eD(b,a),eE(b,a),ey(b,a),eA(b,a)}function e3(a,d){const{owner:b}=d;if(eZ(a,b),1===b.shadowMode){const{data:{context:c}}=d,{stylesheetToken:e}=b.context;ca(c)||ca(c.lwc)||"manual"!==c.lwc.dom||eX(a),ca(e)||eY(a,e)}}function e4(a,b){const c=a.aChildren||a.children;b.aChildren=c;const{renderMode:d,shadowMode:e}=b;(1===e||0===d)&&(e6(b,c),a.aChildren=c,a.children=cH)}function e5(a,e){let c=f5(a);if(!ca(c))return c;const{sel:f,mode:g,ctor:h,owner:b}=e;if(eZ(a,b),1===b.shadowMode){const{stylesheetToken:d}=b.context;ca(d)||eY(a,d)}return c=f1(a,h,{mode:g,owner:b,tagName:f})}function e6(c,m){var g;const{cmpSlots:h}=c,a=c.cmpSlots=b(null);for(let i=0,n=m.length;i<n;i+=1){const e=m[i];if(cb(e))continue;let j="";ev(e)&&(j=(null===(g=e.data.attrs)|| void 0===g?void 0:g.slot)||"");const o=a[j]=a[j]||[];b_.call(o,e)}if(cd(c.isDirty)){const k=B(h);if(k.length!==B(a).length){fL(c);return}for(let l=0,p=k.length;l<p;l+=1){const d=k[l];if(ca(a[d])||h[d].length!==a[d].length){fL(c);return}const q=h[d],r=a[d];for(let f=0,s=a[d].length;f<s;f+=1)if(q[f]!==r[f]){fL(c);return}}}}const e7=new WeakMap;function e8(a){e7.set(a,1)}function e9(a){return e7.has(a)}function fa(e,f,g){const b={};for(let a=f;a<=g;++a){const c=e[a];if(eW(c)){const{key:d}=c;void 0!==d&&(b[d]=a)}}return b}function fb(b,c,k){let g=0,h=0,e=b.length-1,d=b[0],f=b[e];const p=c.length-1;let i=p,a=c[0],j=c[i],n,o,l,q=!1;for(;g<=e&&h<=i;)eW(d)?eW(f)?eW(a)?eW(j)?ew(d,a)?(eJ(d,a),d=b[++g],a=c[++h]):ew(f,j)?(eJ(f,j),f=b[--e],j=c[--i]):ew(d,j)?(eJ(d,j),e0(d.elm,k,cV(f.elm)),d=b[++g],j=c[--i]):ew(f,a)?(eJ(f,a),e0(a.elm,k,d.elm),f=b[--e],a=c[++h]):(void 0===n&&(n=fa(b,g,e)),ca(o=n[a.key])?(eK(a,k,d.elm),a=c[++h]):(eW(l=b[o])&&(l.sel!==a.sel?eK(a,k,d.elm):(eJ(l,a),q||(q=!0,b=[...b]),b[o]=void 0,e0(l.elm,k,d.elm))),a=c[++h])):j=c[--i]:a=c[++h]:f=b[--e]:d=b[++g];if(g<=e||h<=i)if(g>e){let r=i,m;do m=c[++r];while(!eW(m)&&r<p)eT(c,k,eW(m)?m.elm:null,h,i+1)}else eV(b,k,!0,g,e+1)}function fc(e,f,b){const i=e.length,h=f.length;if(0===i){eT(f,b,null);return}if(0===h){eV(e,b,!0);return}let g=null;for(let c=h-1;c>=0;c-=1){const d=e[c],a=f[c];a!==d&&(eW(d)?eW(a)?(eJ(d,a),g=a.elm):eU(d,b,!0):eW(a)&&(eK(a,b,g),g=a.elm))}}const fd=Symbol.iterator;function fe(a){b_.call(fv().velements,a)}function aV(b,a,c=cH){const d=fv();let e;const{key:f}=a;return{type:2,sel:b,data:a,children:c,elm:e,key:f,owner:d}}function aW(a){const b=a>0&&!(cc(a)||cd(a));return b?0:a}function aX(c,d,a,b){ca(b)||ca(b[c])||0===b[c].length||(a=b[c]);const e=fv(),{renderMode:f,shadowMode:g}=e;return 0===f?(fh(a),a):(1===g&&fh(a),aV("slot",d,a))}function aY(c,d,a,e=cH){const f=fv(),{key:g}=a;let h,i,j;const b={type:3,sel:c,data:a,children:e,elm:h,key:g,ctor:d,owner:f,mode:"open",aChildren:i,vm:j};return fe(b),b}function aZ(b,i){const a=[];if(fh(a),ca(b)||null===b)return a;const g=b[fd]();let c=g.next(),d=0,{value:h,done:e}=c;for(;!1===e;){e=(c=g.next()).done;const f=i(h,d,0===d,!0===e);bV(f)?b_.apply(a,f):b_.call(a,f),d+=1,h=c.value}return a}function a$(d){const e=d.length,a=[];fh(a);for(let b=0;b<e;b+=1){const c=d[b];bV(c)?b_.apply(a,c):b_.call(a,c)}return a}function a_(a){let b,c,d;return{type:0,sel:b,text:a,elm:d,key:c,owner:fv()}}function a0(a){let b,c,d;return{type:1,sel:b,text:a,elm:d,key:c,owner:fv()}}function a1(a){return null==a?"":String(a)}function a2(b){const a=fv();if(cb(a))throw new Error;const c=a;return function(a){fG(c,b,c.component,a)}}function a3(b,a){switch(typeof a){case"number":case"string":return b+":"+a}}function a4(a){const b=fv();if(ca(a)||""===a)return a;if(cb(a))return null;const{idx:d,shadowMode:c}=b;return 1===c?b7.call(a,/\S+/g,a=>`${a}-${d}`):a}function a5(a){const b=fv();if(ca(a)||""===a)return a;if(cb(a))return null;const{idx:c,shadowMode:d}=b;return 1===d&&/^#/.test(a)?`${a}-${c}`:a}const ff=new Map;let fg=0;function a6(c,a,d,e=cH){if(null==a)return null;if(!aT(a))throw new Error(`Invalid LWC Constructor ${cj(a)} for custom element <${c}>.`);let b=ff.get(a);ca(b)&&(b=fg++,ff.set(a,b));const f=Object.assign(Object.assign({},d),{key:`dc:${b}:${d.key}`});return aY(c,a,f,e)}function fh(a){return e8(a),a}let fi=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};function fj(a){fi=a}function a7(a){return fi(a)}const fk=k({s:aX,h:aV,c:aY,i:aZ,f:a$,t:a_,d:a1,b:a2,k:a3,co:a0,dc:a6,ti:aW,gid:a4,fid:a5,shc:a7});function fl(a){return`${a}-host`}function fm(a){return fk.h("style",{key:"style",attrs:{type:"text/css"}},[fk.t(a)])}function fn(h,i){const{elm:c,context:a,renderMode:j,shadowMode:k}=h,{stylesheets:e,stylesheetToken:l}=i,{hasScopedStyles:m}=a;let b,f,g;const{stylesheetToken:d,hasTokenInClass:n,hasTokenInAttribute:o}=a;!ca(d)&&(n&&ab(c).remove(fl(d)),o&&c0(c,fl(d))),ca(e)||0===e.length||(b=l),ca(b)||(m&&(ab(c).add(fl(b)),f=!0),1!==j||1!==k||(c_(c,fl(b),""),g=!0)),a.stylesheetToken=b,a.hasTokenInClass=f,a.hasTokenInAttribute=g}function fo(g,h,a){const d=[];let b;for(let e=0;e<g.length;e++){let c=g[e];if(bV(c))b_.apply(d,fo(c,h,a));else{const i=c[cq],j=i||1===a.shadowMode&&1===a.renderMode?h:void 0,k=0===a.renderMode?!i:0===a.shadowMode;let f;1===a.renderMode?f=0===a.shadowMode:(ca(b)&&(b=fq(a)),f=cb(b)||0===b.shadowMode),b_.call(d,c(j,k,f))}}return d}function fp(c,d){const{stylesheets:a,stylesheetToken:e}=d;let b=[];return ca(a)||0===a.length||(b=fo(a,e,c)),b}function fq(b){let a=b;for(;!cb(a);){if(1===a.renderMode)return a;a=a.owner}return a}function fr(b){const a=fq(b);return cb(a)||1!==a.shadowMode?a:null}function fs(d,a){const{renderMode:f,shadowMode:g}=d;if(1===f&&1===g)for(let c=0;c<a.length;c++)dg(a[c]);else if(cL||cP()){const h=bZ.call(a,"\n");return fm(h)}else{const e=fr(d),i=cb(e);for(let b=0;b<a.length;b++)i?dg(a[b]):dh(a[b],e.shadowRoot)}return null}let ft=!1,fu=null;function fv(){return fu}function fw(a){fu=a}function fx(a,b){throw new ReferenceError}function fy(a,b){a!==u&&(0===b.renderMode?bP.isTrue("light"===a.renderMode,`Light DOM components can't render shadow DOM templates. Add an 'lwc:render-mode="light"' directive to the root template tag of ${dq(b)}.`):bP.isTrue(ca(a.renderMode),`Shadow DOM components template can't render light DOM templates. Either remove the 'lwc:render-mode' directive from ${dq(b)} or set it to 'lwc:render-mode="shadow"`))}function fz(a,d){const e=ft,f=fu;let c=[];return gk(a,a.owner,()=>{fu=a},()=>{const{component:f,context:g,cmpSlots:h,cmpTemplate:i,tro:e}=a;e.observe(()=>{if(d!==i){if(cb(i)||gh(a),!ef(d))throw new TypeError(`Invalid template returned by the render() method on ${a}. It must return an imported template (e.g.: \`import html from "./${a.def.name}.html"\`), instead, it has returned: ${cj(d)}.`);a.cmpTemplate=d,g.tplCache=b(null),g.hasScopedStyles=fA(d),fn(a,d);const e=fp(a,d);g.styleVNode=0===e.length?null:fs(a,e)}a.velements=[],ft=!0,c=d.call(void 0,fk,f,h,g.tplCache);const{styleVNode:j}=g;cb(j)||b4.call(c,j)})},()=>{ft=e,fu=f}),c}function fA(c){const{stylesheets:a}=c;if(!ca(a)){for(let b=0;b<a.length;b++)if(cc(a[b][cq]))return!0}return!1}let fB=null;function fC(a){return fB===a}function fD(a,c,d){const{component:e,callHook:f,owner:b}=a;gk(a,b,g,()=>{f(e,c,d)},g)}function fE(b,c){const d=fB;let a;fB=b;try{const e=new c;if(fB.component!==e)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(f){a=Object(f)}finally{if(fB=d,!ca(a))throw ds(b,a),a}}function fF(a){const{def:{render:e},callHook:f,component:g,owner:b}=a,h=fv();let c,d=!1;return gk(a,b,()=>{fw(a)},()=>{a.tro.observe(()=>{c=f(g,e),d=!0})},()=>{fw(h)}),d?fz(a,c):[]}function fG(a,c,d,e){const{callHook:f,owner:b}=a;gk(a,b,g,()=>{f(d,c,[e])},g)}const fH=new Map;function a8(a,{tmpl:b}){return cf(a)&&fH.set(a,b),a}function fI(a){return fH.get(a)}function fJ(a){return new ax(()=>{const{isDirty:b}=a;cd(b)&&(fL(a),gi(a))})}function fK(a){a.tro.reset();const b=fF(a);return a.isDirty=!1,a.isScheduled=!1,b}function fL(a){a.isDirty=!0}const fM=new WeakMap;function fN(c,b){if(!cf(b))throw new TypeError;let a=fM.get(b);return ca(a)&&(a=function(a){fG(c,b,void 0,a)},fM.set(b,a)),a}const fO=b(null),fP=["rendered","connected","disconnected"];function a9(d){for(let b=0;b<fP.length;++b){const a=fP[b];if(a in d){let c=fO[a];ca(c)&&(fO[a]=c=[]),b_.call(c,d[a])}}}function fQ(c,b){const{component:d,def:e,context:f}=c;for(let a=0,g=b.length;a<g;++a)b[a].call(void 0,d,{},e,f)}let fR=0;const fS=new WeakMap;function fT(a,b,c=[]){return b.apply(a,c)}function fU(a,b,c){a[b]=c}function fV(a,b){return a[b]}function fW(a){f6(a)}function fX(b){const a=f4(b);1===a.state&&fY(b),gb(a),f6(a)}function fY(a){const b=f4(a);f$(b)}function fZ(a){f6(a)}function f$(a){const{state:c}=a;if(2!==c){const{oar:b,tro:d}=a;for(const e in d.reset(),b)b[e].reset();gd(a),ge(a),gf(a)}}function f_(a){f$(a)}function f0(b){let a=b.owner;for(;!cb(a)&&0===a.renderMode;)a=a.owner;return a}function f1(e,f,g){const{mode:h,owner:i,tagName:j}=g,c=es(f),a={elm:e,def:c,idx:fR++,state:0,isScheduled:!1,isDirty:!0,tagName:j,mode:h,owner:i,children:cH,aChildren:cH,velements:cH,cmpProps:b(null),cmpFields:b(null),cmpSlots:b(null),oar:b(null),cmpTemplate:null,renderMode:c.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNode:null,tplCache:d,wiredConnecting:cH,wiredDisconnecting:cH},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:fT,setHook:fU,getHook:fV};return a.shadowMode=f2(a),a.tro=fJ(a),fE(a,c.ctor),gc(a)&&gz(a),a}function f2(b){const{def:c}=b;let a;if(cN)if(0===c.renderMode)a=0;else if(cM)if(cE.ENABLE_MIXED_SHADOW_MODE)if("any"===c.shadowSupportMode)a=0;else{const d=f0(b);a=cb(d)||0!==d.shadowMode?1:0}else a=1;else a=1;else a=0;return a}function f3(a,b){fS.set(a,b)}function f4(a){const b=fS.get(a);return b}function f5(a){const b=fS.get(a);return b}function f6(a){if(cc(a.isDirty)){const b=fK(a);f7(a,b)}}function f7(a,b){const{renderRoot:d,children:c}=a;a.children=b,(b.length>0||c.length>0)&&c!==b&&gk(a,a,()=>{},()=>{eI(c,b,d)},()=>{}),1===a.state&&f8(a)}function f8(a){const{def:{renderedCallback:b}}=a;if(cc(cL))return;const{rendered:c}=fO;c&&fQ(a,c),ca(b)||fD(a,b)}let f9=[];function ga(){const b=f9.sort((a,b)=>a.idx-b.idx);f9=[];for(let a=0,c=b.length;a<c;a+=1){const d=b[a];try{f6(d)}catch(e){throw a+1<c&&(0===f9.length&&cJ(ga),b4.apply(f9,b2.call(b,a+1))),e}}}function gb(a){const{state:d}=a;if(1===d)return;a.state=1;const{connected:b}=fO;b&&fQ(a,b),gc(a)&&gA(a);const{connectedCallback:c}=a.def;ca(c)||fD(a,c)}function gc(a){return A(a.def.wire).length>0}function gd(a){cd(a.isDirty)&&(a.isDirty=!0),a.state=2;const{disconnected:b}=fO;b&&fQ(a,b),gc(a)&&gB(a);const{disconnectedCallback:c}=a.def;ca(c)||fD(a,c)}function ge(e){const{velements:b}=e;for(let a=b.length-1;a>=0;a-=1){const{elm:c}=b[a];if(!ca(c)){const d=f5(c);ca(d)||f$(d)}}}function gf(a){const{aChildren:b}=a;gg(b)}function gg(c){for(let b=0,d=c.length;b<d;b+=1){const a=c[b];if(!cb(a)&&!ca(a.elm))switch(a.type){case 2:gg(a.children);break;case 3:{const e=f4(a.elm);f$(e);break}}}}function gh(a){const{children:d,renderRoot:e}=a;for(let b=0,f=d.length;b<f;b++){const c=d[b];cb(c)||ca(c.elm)||cR(c.elm,e)}a.children=cH,ge(a),a.velements=cH}function gi(a){cc(cL)||cc(a.isScheduled)||(a.isScheduled=!0,0===f9.length&&cJ(ga),b_.call(f9,a))}function gj(b){let a=b;for(;!cb(a);){if(!ca(a.def.errorCallback))return a;a=a.owner}}function gk(c,d,e,f,g){let a;e();try{f()}catch(h){a=Object(h)}finally{if(g(),!ca(a)){ds(c,a);const b=cb(d)?void 0:gj(d);if(ca(b))throw a;gh(c);const i=b.def.errorCallback;fD(b,i,[a,a.wcStack])}}}const gl="$$DeprecatedWiredElementHostKey$$",gm="$$DeprecatedWiredParamsMetaKey$$",gn=new Map;class go extends CustomEvent{constructor(a,{setNewContext:b,setDisconnectedCallback:c}){super(a,{bubbles:!0,composed:!0}),q(this,{setNewContext:{value:b},setDisconnectedCallback:{value:c}})}}function gp(a,b){const{cmpFields:c}=a;return d=>{d!==a.cmpFields[b]&&(c[b]=d,dn(a,b))}}function gq(a,b){return c=>{gk(a,a.owner,g,()=>{b.call(a.component,c)},g)}}function gr(c,d,e){let f=!1;const a=new ax(()=>{!1===f&&(f=!0,Promise.resolve().then(()=>{f=!1,a.reset(),b()}))}),b=()=>{let b;a.observe(()=>b=d(c)),e(b)};return{computeConfigAndUpdate:b,ro:a}}function gs(a,b,f){const{adapter:c}=b,d=gv(c);if(ca(d))return;const{elm:g,context:{wiredConnecting:e,wiredDisconnecting:h}}=a;b_.call(e,()=>{const a=new go(d,{setNewContext(a){f(a)},setDisconnectedCallback(a){b_.call(h,a)}});c3(g,a)})}function gt(a,e,b){const{method:c,adapter:f,configCallback:h,dynamic:i}=b,d=ca(c)?gp(a,e):gq(a,c);let m,k;j(d,"$$DeprecatedWiredElementHostKey$$",{value:a.elm}),j(d,"$$DeprecatedWiredParamsMetaKey$$",{value:i}),gk(a,a,g,()=>{k=new f(d)},g);const{computeConfigAndUpdate:l,ro:n}=gr(a.component,h,b=>{gk(a,a,g,()=>{k.update(b,m)},g)});return ca(f.contextSchema)||gs(a,b,b=>{m!==b&&(m=b,1===a.state&&l())}),{connector:k,computeConfigAndUpdate:l,resetConfigWatcher:()=>n.reset()}}const gu=new Map;function gv(a){return gu.get(a)}function gw(a,b){gu.set(a,b)}function gx(b,a,c,d){a.adapter&&(a=a.adapter);const e=b.value;gn.set(b,{adapter:a,method:e,configCallback:c,dynamic:d})}function gy(b,a,c,d){a.adapter&&(a=a.adapter),gn.set(b,{adapter:a,configCallback:c,dynamic:d})}function gz(b){const{context:c,def:{wire:d}}=b,f=c.wiredConnecting=[],g=c.wiredDisconnecting=[];for(const e in d){const h=d[e],a=gn.get(h);if(!ca(a)){const{connector:i,computeConfigAndUpdate:j,resetConfigWatcher:k}=gt(b,e,a),l=a.dynamic.length>0;b_.call(f,()=>{if(i.connect(),!cE.ENABLE_WIRE_SYNC_EMIT&&l){Promise.resolve().then(j);return}j()}),b_.call(g,()=>{i.disconnect(),k()})}}}function gA(c){const{wiredConnecting:b}=c.context;for(let a=0,d=b.length;a<d;a+=1)b[a]()}function gB(a){const{wiredDisconnecting:b}=a.context;gk(a,a,g,()=>{for(let a=0,c=b.length;a<c;a+=1)b[a]()},g)}function ba(a){let b=gv(a);if(!ca(b))throw new Error("Adapter already has a context provider.");gw(a,b=cK());const c=new WeakSet;return(a,d)=>{if(c.has(a))throw new Error(`Adapter was already installed on ${a}.`);c.add(a);const{consumerConnectedCallback:e,consumerDisconnectedCallback:f}=d;a.addEventListener(b,a=>{const{setNewContext:d,setDisconnectedCallback:b}=a,c={provide(a){d(a)}};b(()=>{ca(f)||f(c)}),e(c),a.stopImmediatePropagation()})}}function bb(a){return d1.getReadOnlyProxy(a)}let gC=!1;function bc(a){bP.isFalse(gC,"Hooks are already overridden, only one definition is allowed."),gC=!0,fj(a.sanitizeHtmlContent)}!function(a){a.Text="text",a.Comment="comment",a.Raw="raw",a.Element="element",a.ShadowRoot="shadow-root"}(i||(i={}));const gD=/\s+/g;function gE(a){return new Set(a.split(gD).filter(a=>a.length))}function gF(a){return Array.from(a).join(" ")}function a(a){return function(){throw new TypeError(`"${a}" is not supported in this environment`)}}function bd(a){return{type:i.Element,name:a,parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}}}const gG=b(null),gH=new WeakMap;function gI(a,b){if(a!==b9.call(a)||gG[a])throw new TypeError("Invalid Registration");gG[a]=b,gH.set(b,a)}class be{constructor(){const{constructor:b}=this,a=gH.get(b);if(!a)throw new TypeError("Invalid Construction");return bd(a)}}const gJ=!0;function bf(){return!1}const gK=!1,gL=!1;function bg(a,b,c){if(null!==a.parent&&a.parent!==b){const e=a.parent.children.indexOf(a);a.parent.children.splice(e,1)}a.parent=b;const d=cb(c)?-1:b.children.indexOf(c);-1===d?b.children.push(a):b.children.splice(d,0,a)}function bh(b,a){const c=a.children.indexOf(b);a.children.splice(c,1)}function bi(a){return{type:i.Text,value:String(a),parent:null}}function bj(a){return{type:i.Comment,value:a,parent:null}}function bk(b){const{parent:a}=b;if(cb(a))return null;const c=a.children.indexOf(b);return a.children[c+1]||null}function bl(a,b){return a.shadowRoot={type:i.ShadowRoot,children:[],mode:b.mode,delegatesFocus:!!b.delegatesFocus},a.shadowRoot}function bm(a,c){var d,e;if(c in a)return a[c];if(a.type===i.Element){const b=cz(c);if(cu(b,a.name))return null!==(d=bp(a,b))&& void 0!==d&&d;if(cw(b)||cn(b))return bp(a,b);if("input"===a.name&&"value"===c)return null!==(e=bp(a,"value"))&& void 0!==e?e:""}}function bn(a,d,b){if(d in a)return a[d]=b;if(a.type===i.Element){const c=cz(d);if("innerHTML"===d){a.children=[{type:i.Raw,parent:a,value:b},];return}if(cu(c,a.name))return!0===b?bq(a,c,""):br(a,c);if(cw(c)||cn(c))return bq(a,c,b);if("input"===a.name&&"value"===c)return cb(b)||ca(b)?br(a,"value"):bq(a,"value",b)}}function bo(a,b){a.type===i.Text?a.value=b:a.type===i.Element&&(a.children=[{type:i.Text,parent:a,value:b},])}function bp(b,c,d=null){const a=b.attributes.find(a=>a.name===c&&a.namespace===d);return a?a.value:null}function bq(b,e,c,a=null){const d=b.attributes.find(b=>b.name===e&&b.namespace===a);ca(a)&&(a=null),ca(d)?b.attributes.push({name:e,namespace:a,value:String(c)}):d.value=c}function br(a,b,c){a.attributes=a.attributes.filter(a=>a.name!==b&&a.namespace!==c)}function bs(a){function b(){let b=a.attributes.find(a=>"class"===a.name&&cb(a.namespace));return ca(b)&&(b={name:"class",namespace:null,value:""},a.attributes.push(b)),b}return{add(...c){const a=b(),d=gE(a.value);c.forEach(a=>d.add(a)),a.value=gF(d)},remove(...c){const a=b(),d=gE(a.value);c.forEach(a=>d.delete(a)),a.value=gF(d)}}}function bt(a,d,e,f){const b=a.attributes.find(a=>"style"===a.name&&cb(a.namespace)),c=`${d}: ${e}${f?" !important":""}`;ca(b)?a.attributes.push({name:"style",namespace:null,value:c}):b.value+=`; ${c}`}function bu(a){return!cb(a.parent)}const bv=g,bw=g,bx=g,by=g,bz=a("dispatchEvent"),bA=a("getBoundingClientRect"),bB=a("querySelector"),bC=a("querySelectorAll"),bD=a("getElementsByTagName"),bE=a("getElementsByClassName"),bF=a("getChildren"),bG=a("getChildNodes"),bH=a("getFirstChild"),bI=a("getFirstElementChild"),bJ=a("getLastChild"),bK=a("getLastElementChild");function bL(a,b,c){gI(a,b)}function bM(a){return gG[a]}const bN=be;T(bl),R(bj),P(bd),Q(bi),at(bL),aa(bz),X(bp),ae(bA),ak(bG),aj(bF),ac(bs),au(bM),ai(bE),ah(bD),al(bH),am(bI),an(bJ),ao(bK),U(bm),L(bN),N(bg),ar(bv),as(bw),aq(bu),M(bf),J(!1),K(!1),S(bk),af(bB),ag(bC),O(bh),Z(br),_(by),Y(bq),ad(bt),V(bn),W(bo),I(!0),$(bx);const gM={'"':""","'":"'","<":"<",">":">","&":"&"};function gN(a){return a.replace(/["'<>&]/g,a=>gM[a])}function gO(a){return a.map(a=>a.value.length?`${a.name}=${JSON.stringify(gN(a.value))}`:a.name).join(" ")}function gP(a){return a.map(a=>{switch(a.type){case i.Text:return""===a.value?"\u200D":gN(a.value);case i.Comment:return`<!--${gN(a.value)}-->`;case i.Raw:return a.value;case i.Element:return gR(a)}}).join("")}function gQ(a){const b=[`shadowroot="${a.mode}"`];return a.delegatesFocus&&b.push("shadowrootdelegatesfocus"),`<template ${b.join(" ")}>${gP(a.children)}</template>`}function gR(a){let b="";const{name:c}=a,d=a.attributes.length?` ${gO(a.attributes)}`:"",e=gP(a.children);return b+=`<${c}${d}>`,a.shadowRoot&&(b+=gQ(a.shadowRoot)),b+=e,cs(c)||(b+=`</${c}>`),b}const gS={type:i.Element,name:"fake-root-element",parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}};function bO(b,d,c={}){if(!ch(b))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${b}.`);if(!cf(d))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${d}.`);if(!cg(c)||cb(c))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${c}.`);const a=bd(b);for(const[e,f]of(f1(a,d,{mode:"open",owner:null,tagName:b}),Object.entries(c)))a[e]=f;return a.parent=gS,fX(a),gR(a)}k(c),f(c.prototype),exports.LightningElement=c,exports.api=aN,exports.createContextProvider=ba,exports.getComponentDef=aU,exports.isComponentConstructor=aT,exports.readonly=bb,exports.register=a9,exports.registerComponent=a8,exports.registerDecorators=aO,exports.registerTemplate=aQ,exports.renderComponent=bO,exports.sanitizeAttribute=aR,exports.setFeatureFlag=G,exports.setFeatureFlagForTest=H,exports.setHooks=bc,exports.track=aM,exports.unwrap=aB,exports.wire=aL
|
|
1
|
+
"use strict";function v(a,b){if(!a)throw new Error(`Invariant Violation: ${b}`)}function w(a,b){if(!a)throw new Error(`Assert Violation: ${b}`)}function x(a,b){if(a)throw new Error(`Assert Violation: ${b}`)}function y(a){throw new Error(a)}Object.defineProperty(exports,"__esModule",{value:!0});var i,bP=Object.freeze({__proto__:null,invariant:v,isTrue:w,isFalse:x,fail:y});const{assign:z,create:b,defineProperties:q,defineProperty:j,freeze:k,getOwnPropertyDescriptor:bQ,getOwnPropertyNames:A,getPrototypeOf:bR,hasOwnProperty:bS,isFrozen:bT,keys:B,seal:f,setPrototypeOf:bU}=Object,{isArray:bV}=Array,{filter:bW,find:bX,indexOf:bY,join:bZ,map:b$,push:b_,reduce:b0,reverse:b1,slice:b2,splice:b3,unshift:b4,forEach:r}=Array.prototype,{fromCharCode:b5}=String,{charCodeAt:b6,replace:b7,slice:b8,toLowerCase:b9}=String.prototype;function ca(a){return void 0===a}function cb(a){return null===a}function cc(a){return!0===a}function cd(a){return!1===a}function ce(a){return"boolean"==typeof a}function cf(a){return"function"==typeof a}function cg(a){return"object"==typeof a}function ch(a){return"string"==typeof a}function g(){}const ci={}.toString;function cj(a){return a&&a.toString?bV(a)?bZ.call(b$.call(a,cj),","):a.toString():"object"==typeof a?ci.call(a):a+""}function ck(a,c){do{let b=bQ(a,c);if(!ca(b))return b;a=bR(a)}while(null!==a)}const cl=["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:cm,AriaPropNameToAttrNameMap:C}=(()=>{let a=b(null),c=b(null);return r.call(cl,b=>{let d=b9.call(b7.call(b,/^aria/,()=>"aria-"));a[d]=b,c[b]=d}),{AriaAttrNameToPropNameMap:a,AriaPropNameToAttrNameMap:c}})();function cn(a){return a in cm}const e=function(){if("object"==typeof globalThis)return globalThis;let a;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),a=__magic__,delete Object.prototype.__magic__}catch(b){}finally{void 0===a&&(a=window)}return a}(),co="$shadowResolver$",cp="$$lwc-synthetic-mode",cq="$scoped$",D=["area","base","br","circle","col","ellipse","feBlend","feColorMatrix","feFuncR","feFuncG","feFuncB","feFuncA","feImage","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feGaussianBlur","feMerge","feMergeNode","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","fePointLight","embed","hr","img","input","keygen","line","link","menuitem","meta","param","path","rect","source","track","wbr",],cr=new Set(D);function cs(a){return cr.has(a)}const ct=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 cu(b,c){let a=ct.get(b);return void 0!==a&&(0===a.size||a.has(c))}const cv=new Set(["role","accesskey","class","contenteditable","contextmenu","dir","draggable","dropzone","hidden","id","itemprop","lang","slot","spellcheck","style","tabindex","title",]);function cw(a){return cv.has(a)}const cx=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"],]),cy=new Map;function cz(a){let e=C[a];if(!ca(e))return e;let f=cx.get(a);if(!ca(f))return f;let g=cy.get(a);if(!ca(g))return g;let b="";for(let d=0,h=a.length;d<h;d++){let c=b6.call(a,d);c>=65&&c<=90?b+="-"+b5(c+32):b+=b5(c)}return cy.set(a,b),b}const cA="http://www.w3.org/XML/1998/namespace",cB="http://www.w3.org/2000/svg",cC="http://www.w3.org/1999/xlink";if("function"!=typeof Event){class E{}j(e,"Event",{value:E,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class F extends Event{}j(e,"CustomEvent",{value:F,configurable:!0,writable:!0})}const cD={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};e.lwcRuntimeFlags||Object.defineProperty(e,"lwcRuntimeFlags",{value:b(null)});const cE=e.lwcRuntimeFlags;function G(a,b){if(!ce(b)){let d=`Failed to set the value "${b}" for the runtime feature flag "${a}". Runtime feature flags can only be set to a boolean value.`;console.error(d);return}if(ca(cD[a])){let e=B(cD).map(a=>`"${a}"`).join(", ");console.warn(`Failed to set the value "${b}" for the runtime feature flag "${a}" because it is undefined. Available flags: ${e}.`);return}{let c=cE[a];if(!ca(c)){console.error(`Failed to set the value "${b}" for the runtime feature flag "${a}". "${a}" has already been set with the value "${c}".`);return}j(cE,a,{value:b})}}function H(a,b){}let cF=[];const cG=32,d=f(b(null)),cH=f([]);function cI(){let b=cF;cF=[];for(let a=0,c=b.length;a<c;a+=1)b[a]()}function cJ(a){0===cF.length&&Promise.resolve().then(cI),b_.call(cF,a)}function cK(){function a(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return a()+a()+"-"+a()+"-"+a()+"-"+a()+"-"+a()+a()+a()}let cL;function I(a){cL=a}let cM;function J(a){cM=a}let cN;function K(a){cN=a}let cO;function L(a){cO=a}let cP;function M(a){cP=a}let cQ;function N(a){cQ=a}let cR;function O(a){cR=a}let cS;function P(a){cS=a}let cT;function Q(a){cT=a}let cU;function R(a){cU=a}let cV;function S(a){cV=a}let cW;function T(a){cW=a}let cX;function U(a){cX=a}let cY;function V(a){cY=a}let cZ;function W(a){cZ=a}let c$;function X(a){c$=a}let c_;function Y(a){c_=a}let c0;function Z(a){c0=a}let c1;function $(a){c1=a}let c2;function _(a){c2=a}let c3;function aa(a){c3=a}let ab;function ac(a){ab=a}let c4;function ad(a){c4=a}let c5;function ae(a){c5=a}let c6;function af(a){c6=a}let c7;function ag(a){c7=a}let c8;function ah(a){c8=a}let c9;function ai(a){c9=a}let da;function aj(a){da=a}let db;function ak(a){db=a}let dc;function al(a){dc=a}let dd;function am(a){dd=a}let de;function an(a){de=a}let df;function ao(a){df=a}let ap;function aq(a){ap=a}let dg;function ar(a){dg=a}let dh;function as(a){dh=a}let di;function at(a){di=a}let dj;function au(a){dj=a}const dk=new WeakMap;function dl(c){let a=dk.get(c);if(ca(a)){let d=b(null);a=d,dk.set(c,d)}return a}let dm=null;function av(d,e){let c=dk.get(d);if(!ca(c)){let a=c[e];if(!ca(a))for(let b=0,f=a.length;b<f;b+=1){let g=a[b];g.notify()}}}function aw(e,c){if(null===dm)return;let b=dm,d=dl(e),a=d[c];if(ca(a))a=[],d[c]=a;else if(a[0]===b)return;-1===bY.call(a,b)&&b.link(a)}class ax{constructor(a){this.listeners=[],this.callback=a}observe(b){let c=dm;dm=this;let a;try{b()}catch(d){a=Object(d)}finally{if(dm=c,void 0!==a)throw a}}reset(){let{listeners:a}=this,c=a.length;if(c>0){for(let b=0;b<c;b+=1){let d=a[b],e=bY.call(a[b],this);b3.call(d,e,1)}a.length=0}}notify(){this.callback.call(void 0,this)}link(a){b_.call(a,this),b_.call(this.listeners,a)}}function dn(a,b){av(a.component,b)}function dp(a,b){aw(a.component,b)}function dq(a){return`<${b9.call(a.tagName)}>`}function dr(c){let b=[],a=c;for(;!cb(a);)b_.call(b,dq(a)),a=a.owner;return b.reverse().join("\n ")}function ds(b,a){if(!bT(a)&&ca(a.wcStack)){let c=dr(b);j(a,"wcStack",{get:()=>c})}}function dt(b){let a=b();return(null==a?void 0:a.__esModule)?a.default:a}function du(a){return cf(a)&&bS.call(a,"__circular__")}const s="undefined"!=typeof HTMLElement?HTMLElement:function(){},dv=s.prototype,ay=["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title",];function h(a){return`Using the \`${a}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}z(b(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:h("offsetHeight")},offsetLeft:{readOnly:!0,error:h("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:h("offsetTop")},offsetWidth:{readOnly:!0,error:h("offsetWidth")},role:{attribute:"role"}});let dw=null,dx;function dy(a,b){return a!==dw||b!==dx}function dz(a,b){dw=null,dx=void 0}function dA(a,b){dw=a,dx=b}const l=b(null);r.call(B(C),a=>{let b=ck(dv,a);ca(b)||(l[a]=b)}),r.call(ay,a=>{let b=ck(dv,a);ca(b)||(l[a]=b)});const{isArray:dB}=Array,{prototype:dC,getPrototypeOf:dD,create:dE,defineProperty:dF,isExtensible:dG,getOwnPropertyDescriptor:dH,getOwnPropertyNames:dI,getOwnPropertySymbols:dJ,preventExtensions:dK,hasOwnProperty:dL}=Object,{push:dM,concat:dN}=Array.prototype;function dO(a){return void 0===a}function dP(a){return"function"==typeof a}const dQ=new WeakMap;function dR(a,b){dQ.set(a,b)}const dS=a=>dQ.get(a)||a;class t{constructor(a,b){this.originalTarget=b,this.membrane=a}wrapDescriptor(a){if(dL.call(a,"value"))a.value=this.wrapValue(a.value);else{let{set:b,get:c}=a;dO(c)||(a.get=this.wrapGetter(c)),dO(b)||(a.set=this.wrapSetter(b))}return a}copyDescriptorIntoShadowTarget(c,a){let{originalTarget:d}=this,b=dH(d,a);if(!dO(b)){let e=this.wrapDescriptor(b);dF(c,a,e)}}lockShadowTarget(a){let{originalTarget:c}=this,d=dN.call(dI(c),dJ(c));d.forEach(b=>{this.copyDescriptorIntoShadowTarget(a,b)});let{membrane:{tagPropertyKey:b}}=this;dO(b)||dL.call(a,b)||dF(a,b,dE(null)),dK(a)}apply(a,b,c){}construct(a,b,c){}get(e,a){let{originalTarget:b,membrane:{valueObserved:c}}=this,d=b[a];return c(b,a),this.wrapValue(d)}has(e,a){let{originalTarget:b,membrane:{tagPropertyKey:c,valueObserved:d}}=this;return d(b,a),a in b||a===c}ownKeys(d){let{originalTarget:a,membrane:{tagPropertyKey:b}}=this,c=dO(b)||dL.call(a,b)?[]:[b];return dM.apply(c,dI(a)),dM.apply(c,dJ(a)),c}isExtensible(a){let{originalTarget:b}=this;return!!dG(a)&&(!!dG(b)||(this.lockShadowTarget(a),!1))}getPrototypeOf(b){let{originalTarget:a}=this;return dD(a)}getOwnPropertyDescriptor(c,b){let{originalTarget:d,membrane:{valueObserved:f,tagPropertyKey:e}}=this;f(d,b);let a=dH(d,b);if(dO(a)){if(b!==e)return;return dF(c,e,a={value:void 0,writable:!1,configurable:!1,enumerable:!1}),a}return!1===a.configurable&&this.copyDescriptorIntoShadowTarget(c,b),this.wrapDescriptor(a)}}const dT=new WeakMap,dU=new WeakMap,dV=new WeakMap,dW=new WeakMap;class dX extends t{wrapValue(a){return this.membrane.getProxy(a)}wrapGetter(a){let c=dT.get(a);if(!dO(c))return c;let d=this,b=function(){return d.wrapValue(a.call(dS(this)))};return dT.set(a,b),dV.set(b,a),b}wrapSetter(a){let c=dU.get(a);if(!dO(c))return c;let b=function(b){a.call(dS(this),dS(b))};return dU.set(a,b),dW.set(b,a),b}unwrapDescriptor(a){if(dL.call(a,"value"))a.value=dS(a.value);else{let{set:b,get:c}=a;dO(c)||(a.get=this.unwrapGetter(c)),dO(b)||(a.set=this.unwrapSetter(b))}return a}unwrapGetter(a){let c=dV.get(a);if(!dO(c))return c;let d=this,b=function(){return dS(a.call(d.wrapValue(this)))};return dT.set(b,a),dV.set(a,b),b}unwrapSetter(a){let c=dW.get(a);if(!dO(c))return c;let d=this,b=function(b){a.call(d.wrapValue(this),d.wrapValue(b))};return dU.set(b,a),dW.set(a,b),b}set(f,a,c){let{originalTarget:b,membrane:{valueMutated:d}}=this,e=b[a];return e!==c?(b[a]=c,d(b,a)):"length"===a&&dB(b)&&d(b,a),!0}deleteProperty(d,a){let{originalTarget:b,membrane:{valueMutated:c}}=this;return delete b[a],c(b,a),!0}setPrototypeOf(a,b){}preventExtensions(a){if(dG(a)){let{originalTarget:b}=this;if(dK(b),dG(b))return!1;this.lockShadowTarget(a)}return!0}defineProperty(d,a,c){let{originalTarget:b,membrane:{valueMutated:e,tagPropertyKey:f}}=this;return!(a!==f||dL.call(b,a))||(dF(b,a,this.unwrapDescriptor(c)),!1===c.configurable&&this.copyDescriptorIntoShadowTarget(d,a),e(b,a),!0)}}const dY=new WeakMap,dZ=new WeakMap;class d$ extends t{wrapValue(a){return this.membrane.getReadOnlyProxy(a)}wrapGetter(a){let b=dY.get(a);if(!dO(b))return b;let d=this,c=function(){return d.wrapValue(a.call(dS(this)))};return dY.set(a,c),c}wrapSetter(a){let b=dZ.get(a);if(!dO(b))return b;let c=function(a){};return dZ.set(a,c),c}set(a,b,c){return!1}deleteProperty(a,b){return!1}setPrototypeOf(a,b){}preventExtensions(a){return!1}defineProperty(a,b,c){return!1}}function d_(a){if(null===a)return!1;if("object"!=typeof a)return!1;if(dB(a))return!0;let b=dD(a);return b===dC||null===b||null===dD(b)}const d0=(a,b)=>{},d1=(a,b)=>{};function d2(a){return dB(a)?[]:{}}class az{constructor(d={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;let{valueMutated:a,valueObserved:b,valueIsObservable:c,tagPropertyKey:e}=d;this.valueMutated=dP(a)?a:d1,this.valueObserved=dP(b)?b:d0,this.valueIsObservable=dP(c)?c:d_,this.tagPropertyKey=e}getProxy(b){let a=dS(b);return this.valueIsObservable(a)?this.readOnlyObjectGraph.get(a)===b?b:this.getReactiveHandler(a):a}getReadOnlyProxy(a){return(a=dS(a),this.valueIsObservable(a))?this.getReadOnlyHandler(a):a}unwrapProxy(a){return dS(a)}getReactiveHandler(a){let b=this.reactiveObjectGraph.get(a);if(dO(b)){let c=new dX(this,a);dR(b=new Proxy(d2(a),c),a),this.reactiveObjectGraph.set(a,b)}return b}getReadOnlyHandler(a){let b=this.readOnlyObjectGraph.get(a);if(dO(b)){let c=new d$(this,a);dR(b=new Proxy(d2(a),c),a),this.readOnlyObjectGraph.set(a,b)}return b}}const aA=Symbol.for("@@lockerLiveValue"),d3=new az({valueObserved:aw,valueMutated:av,tagPropertyKey:aA});function aB(a){return d3.unwrapProxy(a)}function aC(f,a){let{get:b,set:c,enumerable:d,configurable:e}=a;if(!cf(b))throw new TypeError;if(!cf(c))throw new TypeError;return{enumerable:d,configurable:e,get(){let a=f3(this);if(!fC(a))return dp(a,f),b.call(a.elm)},set(b){let a=f3(this);return b!==a.cmpProps[f]&&(a.cmpProps[f]=b,dn(a,f)),c.call(a.elm,b)}}}const c=function(){if(cb(fB))throw new ReferenceError("Illegal constructor");let a=fB,{def:c,elm:b}=a,{bridge:d}=c;if(bU(b,d.prototype),a.component=this,1===arguments.length){let{callHook:e,setHook:f,getHook:g}=arguments[0];a.callHook=e,a.setHook=f,a.getHook=g}return this[aA]=void 0,f2(this,a),f2(b,a),1===a.renderMode?a.renderRoot=d4(a):a.renderRoot=b,this};function d4(a){let{elm:c,mode:d,shadowMode:e,def:{ctor:f}}=a,b=cW(c,{["$$lwc-synthetic-mode"]:1===e,delegatesFocus:Boolean(f.delegatesFocus),mode:d});return a.shadowRoot=b,f2(b,a),b}c.prototype={constructor:c,dispatchEvent(a){let{elm:b}=f3(this);return c3(b,a)},addEventListener(b,c,d){let a=f3(this),{elm:e}=a,f=fN(a,c);c1(e,b,f,d)},removeEventListener(b,c,d){let a=f3(this),{elm:e}=a,f=fN(a,c);c2(e,b,f,d)},hasAttribute(a){let{elm:b}=f3(this);return!cb(c$(b,a))},hasAttributeNS(a,b){let{elm:c}=f3(this);return!cb(c$(c,b,a))},removeAttribute(a){let{elm:b}=f3(this);dA(b,a),c0(b,a),dz()},removeAttributeNS(c,a){let{elm:b}=f3(this);dA(b,a),c0(b,a,c),dz()},getAttribute(a){let{elm:b}=f3(this);return c$(b,a)},getAttributeNS(a,b){let{elm:c}=f3(this);return c$(c,b,a)},setAttribute(a,c){let d=f3(this),{elm:b}=d;dA(b,a),c_(b,a,c),dz()},setAttributeNS(c,a,d){let e=f3(this),{elm:b}=e;dA(b,a),c_(b,a,d,c),dz()},getBoundingClientRect(){let a=f3(this),{elm:b}=a;return c5(b)},get isConnected(){let{elm:aD}=f3(this);return ap(aD)},get classList(){let aE=f3(this),{elm:aF}=aE;return ab(aF)},get template(){let aG=f3(this);return aG.shadowRoot},get shadowRoot(){return null},render(){let a=f3(this);return a.def.template},toString(){let a=f3(this);return`[object ${a.def.name}]`}};const m=b(null),aH=["children","childNodes","firstChild","firstElementChild","lastChild","lastElementChild",];function d5(a){switch(a){case"children":return da;case"childNodes":return db;case"firstChild":return dc;case"firstElementChild":return dd;case"lastChild":return de;case"lastElementChild":return df}}for(const aI of aH)m[aI]={get(){let a=f3(this),{elm:b}=a;return d5(aI)(b)},configurable:!0,enumerable:!0};const aJ=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll",];function d6(a){switch(a){case"getElementsByClassName":return c9;case"getElementsByTagName":return c8;case"querySelector":return c6;case"querySelectorAll":return c7}}for(const aK of aJ)m[aK]={value(a){let b=f3(this),{elm:c}=b;return d6(aK)(c,a)},configurable:!0,enumerable:!0,writable:!0};q(c.prototype,m);const n=b(null);for(const o in l)n[o]=aC(o,l[o]);function d7(a){return{get(){let b=f3(this);return dp(b,a),b.cmpFields[a]},set(c){let b=f3(this);c!==b.cmpFields[a]&&(b.cmpFields[a]=c,dn(b,a))},enumerable:!0,configurable:!0}}function aL(){throw new Error}function d8(a){return{get(){let b=f3(this);if(!fC(b))return dp(b,a),b.cmpProps[a]},set(c){let b=f3(this);b.cmpProps[a]=c,dn(b,a)},enumerable:!0,configurable:!0}}q(c.prototype,n),j(c,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class d9 extends ax{constructor(a,b){super(()=>{cd(this.debouncing)&&(this.debouncing=!0,cJ(()=>{if(cc(this.debouncing)){let{value:c}=this,{isDirty:d,component:e,idx:f}=a;b.call(e,c),this.debouncing=!1,cc(a.isDirty)&&cd(d)&&f>0&&fW(a)}}))}),this.debouncing=!1}reset(a){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=a)}}function ea(e,a){let{get:b,set:f,enumerable:c,configurable:d}=a;if(!cf(b))throw new Error;return{get(){return b.call(this)},set(c){let b=f3(this);if(f){if(cE.ENABLE_REACTIVE_SETTER){let a=b.oar[e];ca(a)&&(a=b.oar[e]=new d9(b,f)),a.reset(c),a.observe(()=>{f.call(this,c)})}else f.call(this,c)}},enumerable:c,configurable:d}}function aM(a){if(1===arguments.length)return d3.getProxy(a);throw new Error}function eb(a){return{get(){let b=f3(this);return dp(b,a),b.cmpFields[a]},set(d){let b=f3(this),c=d3.getProxy(d);c!==b.cmpFields[a]&&(b.cmpFields[a]=c,dn(b,a))},enumerable:!0,configurable:!0}}function aN(a,b){throw new Error}function ec(a){return{get(){let b=f3(this);return dp(b,a),b.cmpFields[a]},set(c){let b=f3(this);c!==b.cmpFields[a]&&(b.cmpFields[a]=c,dn(b,a))},enumerable:!0,configurable:!0}}function aO(i,z){let d=i.prototype,{publicProps:f,publicMethods:o,wire:k,track:h,fields:l}=z,A=b(null),p=b(null),q=b(null),s=b(null),t=b(null),u=b(null),a;if(!ca(f))for(let c in f){let v=f[c];if(u[c]=v.config,a=bQ(d,c),v.config>0){if(ca(a))throw new Error;a=ea(c,a)}else a=ca(a)||ca(a.get)?d8(c):ea(c,a);p[c]=a,j(d,c,a)}if(ca(o)||r.call(o,b=>{if(ca(a=bQ(d,b)))throw new Error;A[b]=a}),!ca(k))for(let e in k){let{adapter:w,method:B,config:x,dynamic:y=[]}=k[e];if(a=bQ(d,e),1===B){if(ca(a))throw new Error;q[e]=a,gw(a,w,x,y)}else a=ec(e),s[e]=a,gx(a,w,x,y),j(d,e,a)}if(!ca(h))for(let m in h)a=bQ(d,m),a=eb(m),j(d,m,a);if(!ca(l))for(let n=0,C=l.length;n<C;n++){let g=l[n];a=bQ(d,g);let D=!ca(f)&&g in f,E=!ca(h)&&g in h;D||E||(t[g]=d7(g))}return ee(i,{apiMethods:A,apiFields:p,apiFieldsConfig:u,wiredMethods:q,wiredFields:s,observedFields:t}),i}const ed=new Map;function ee(a,b){ed.set(a,b)}const ef={apiMethods:d,apiFields:d,apiFieldsConfig:d,wiredMethods:d,wiredFields:d,observedFields:d};function eg(b){let a=ed.get(b);return ca(a)?ef:a}const aP=new Set;function u(){return[]}function eh(a){return aP.has(a)}function aQ(a){return aP.add(a),j(a,"stylesheetTokens",{get(){let{stylesheetToken:a}=this;return ca(a)?a:{hostAttribute:`${a}-host`,shadowAttribute:a}},set(a){this.stylesheetToken=ca(a)?void 0:a.shadowAttribute}}),a}function aR(b,c,d,a){return a}aP.add(u);const ei=b(null),ej=b(null);function ek(b){let a=ei[b];return ca(a)&&(a=ei[b]=function(){let a=f3(this),{getHook:c}=a;return c(a.component,b)}),a}function el(b){let a=ej[b];return ca(a)&&(a=ej[b]=function(a){let c=f3(this),{setHook:d}=c;a=d3.getReadOnlyProxy(a),d(c.component,b,a)}),a}function em(a){return function(){let b=f3(this),{callHook:c,component:d}=b,e=d[a];return c(b.component,e,b2.call(arguments))}}function en(a,b){return function(c,f,d){if(f===d)return;let e=a[c];if(ca(e)){ca(b)||b.apply(this,arguments);return}dy(this,c)&&(this[e]=d)}}function aS(c,h,i){let a;cf(c)?a=class extends c{}:(bU(a=function(){throw new TypeError("Illegal constructor")},c),bU(a.prototype,c.prototype),j(a.prototype,"constructor",{writable:!0,configurable:!0,value:a}));let k=b(null),{attributeChangedCallback:m}=c.prototype,{observedAttributes:p=[]}=c,e=b(null);for(let f=0,n=h.length;f<n;f+=1){let d=h[f];k[cz(d)]=d,e[d]={get:ek(d),set:el(d),enumerable:!0,configurable:!0}}for(let g=0,o=i.length;g<o;g+=1){let l=i[g];e[l]={value:em(l),writable:!0,configurable:!0}}return e.attributeChangedCallback={value:en(k,m)},j(a,"observedAttributes",{get:()=>[...p,...B(k)]}),q(a.prototype,e),a}const p=aS(s,A(l),[]);function eo(a){throw new ReferenceError}k(p),f(p.prototype);const ep=new WeakMap;function eq(b){let a=bR(b);if(cb(a))throw new ReferenceError(`Invalid prototype chain for ${b.name}, you must extend LightningElement.`);if(du(a)){let d=dt(a);a=d===a?c:d}return a}function er(d){let{shadowSupportMode:j,renderMode:k}=d,s=eg(d),{apiFields:l,apiFieldsConfig:t,apiMethods:m,wiredFields:u,wiredMethods:v,observedFields:w}=s,n=d.prototype,{connectedCallback:e,disconnectedCallback:f,renderedCallback:g,errorCallback:h,render:i}=n,o=eq(d),a=o!==c?es(o):et,x=aS(a.bridge,B(l),B(m)),y=z(b(null),a.props,l),A=z(b(null),a.propsConfig,t),C=z(b(null),a.methods,m),D=z(b(null),a.wire,u,v);e=e||a.connectedCallback,f=f||a.disconnectedCallback,g=g||a.renderedCallback,h=h||a.errorCallback,i=i||a.render;let p=a.shadowSupportMode;ca(j)||(p=j);let r=a.renderMode;ca(k)||(r="light"===k?0:1);let E=fI(d)||a.template,F=d.name||a.name;return q(n,w),{ctor:d,name:F,wire:D,props:y,propsConfig:A,methods:C,bridge:x,template:E,renderMode:r,shadowSupportMode:p,connectedCallback:e,disconnectedCallback:f,renderedCallback:g,errorCallback:h,render:i}}function aT(b){if(!cf(b))return!1;if(b.prototype instanceof c)return!0;let a=b;do{if(du(a)){let d=dt(a);if(d===a)return!0;a=d}if(a===c)return!0}while(!cb(a)&&(a=bR(a)))return!1}function es(a){let b=ep.get(a);if(ca(b)){if(du(a)){let c=dt(a);return b=es(c),ep.set(a,b),b}if(!aT(a))throw new TypeError(`${a} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);b=er(a),ep.set(a,b)}return b}const et={ctor:c,name:c.name,props:n,propsConfig:d,methods:d,renderMode:1,shadowSupportMode:"reset",wire:d,bridge:p,template:u,render:c.prototype.render};function aU(f){let g=es(f),{ctor:h,name:i,props:j,propsConfig:k,methods:b}=g,c={};for(let a in j)c[a]={config:k[a]||0,type:"any",attr:cz(a)};let d={};for(let e in b)d[e]=b[e].value;return{ctor:h,name:i,props:c,methods:d}}function eu(a){let b=dj(a=a.toLowerCase());return ca(b)&&di(a,b=class extends cO{constructor(a){super(),cf(a)&&a(this)}}),b}function ev(b){let{type:a}=b;return 2===a||3===a}function ew(a,b){return a.key===b.key&&a.sel===b.sel}const ex=58;function ey(f,g){let{attrs:e}=g.data;if(ca(e))return;let h=cb(f)?d:f.data.attrs;if(h===e)return;let{elm:c}=g;for(let a in e){let b=e[a],i=h[a];i!==b&&(dA(c,a),58===b6.call(a,3)?c_(c,a,b,"http://www.w3.org/XML/1998/namespace"):58===b6.call(a,5)?c_(c,a,b,"http://www.w3.org/1999/xlink"):cb(b)||ca(b)?c0(c,a):c_(c,a,b),dz())}}function ez(b,a){return"input"===b&&("value"===a||"checked"===a)}function eA(c,e){let{props:b}=e.data;if(ca(b))return;let f=cb(c)?d:c.data.props;if(f===b)return;let i=cb(c),{elm:g,sel:j}=e;for(let a in b){let h=b[a];(i||h!==(ez(j,a)?cX(g,a):f[a]))&&cY(g,a,h)}}const eB=b(null);function eC(a){if(null==a)return d;let e=eB[a=ch(a)?a:a+""];if(e)return e;e=b(null);let f=0,c,g=a.length;for(c=0;c<g;c++)32===b6.call(a,c)&&(c>f&&(e[b8.call(a,f,c)]=!0),f=c+1);return c>f&&(e[b8.call(a,f,c)]=!0),eB[a]=e,e}function eD(b,h){let{elm:i,data:{className:c}}=h,d=cb(b)?void 0:b.data.className;if(d===c)return;let e=ab(i),f=eC(c),g=eC(d),a;for(a in g)ca(f[a])&&e.remove(a);for(a in f)ca(g[a])&&e.add(a)}function eE(b,d){let{elm:c,data:{style:a}}=d,e=cb(b)?void 0:b.data.style;e!==a&&(ch(a)&&""!==a?c_(c,"style",a):c0(c,"style"))}function eF(c){let{elm:d,data:{on:a}}=c;if(!ca(a))for(let b in a){let e=a[b];c1(d,b,e)}}function eG(b){let{elm:c,data:{classMap:a}}=b;if(ca(a))return;let d=ab(c);for(let e in a)d.add(e)}function eH(c){let{elm:d,data:{styleDecls:a}}=c;if(!ca(a))for(let b=0;b<a.length;b++){let[e,f,g]=a[b];c4(d,e,f,g)}}function eI(b,a,c){e9(a)?fb(b,a,c):fc(b,a,c)}function eJ(b,a){if(b!==a)switch(a.type){case 0:eL(b,a);break;case 1:eN(b,a);break;case 2:eQ(b,a);break;case 3:eS(b,a)}}function eK(a,b,c){switch(a.type){case 0:eM(a,b,c);break;case 1:eO(a,b,c);break;case 2:eP(a,b,c);break;case 3:eR(a,b,c)}}function eL(b,a){a.elm=b.elm,a.text!==b.text&&e_(a)}function eM(a,c,d){let{owner:e}=a,b=a.elm=cT(a.text);e$(b,e),e0(b,c,d)}function eN(b,a){a.elm=b.elm,a.text!==b.text&&e_(a)}function eO(a,c,d){let{owner:e}=a,b=a.elm=cU(a.text);e$(b,e),e0(b,c,d)}function eP(a,c,d){let{sel:e,owner:f,data:{svg:g}}=a,h=cc(g)?"http://www.w3.org/2000/svg":void 0,b=cS(e,h);e$(b,f),e3(b,a),a.elm=b,e2(null,a),e0(b,c,d),eT(a.children,b,null)}function eQ(a,b){let c=b.elm=a.elm;e2(a,b),eI(a.children,b.children,c)}function eR(a,e,f){let{sel:g,owner:h}=a,d=eu(g),b,c=new d(c=>{b=e5(c,a)});if(e$(c,h),a.elm=c,a.vm=b,b)e4(a,b);else if(a.ctor!==d)throw new TypeError("Incorrect Component Constructor");e2(null,a),e0(c,e,f),b&&ga(b),eT(a.children,c,null),b&&fZ(b)}function eS(b,a){let d=a.elm=b.elm,c=a.vm=b.vm;e2(b,a),ca(c)||e4(a,c),eI(b.children,a.children,d),ca(c)||fW(c)}function eT(b,d,e,a=0,f=b.length){for(;a<f;++a){let c=b[a];eW(c)&&eK(c,d,e)}}function eU(a,d,e=!1){let{type:f,elm:b}=a;switch(e&&e1(b,d),f){case 2:eV(a.children,b);break;case 3:{let{vm:c}=a;ca(c)||f_(c)}}}function eV(b,d,e=!1,a=0,f=b.length){for(;a<f;++a){let c=b[a];eW(c)&&eU(c,d,e)}}function eW(a){return null!=a}function eX(a){a.$domManual$=!0}function eY(a,b){a.$shadowToken$=b}function eZ(c,d){let{cmpTemplate:a,context:e}=d,b=null==a?void 0:a.stylesheetToken;!ca(b)&&e.hasScopedStyles&&ab(c).add(b)}function e$(a,b){let{renderRoot:c,renderMode:d,shadowMode:e}=b;cN&&(1===e||0===d)&&(a[co]=c[co])}function e_(a){let{elm:b,text:c}=a;cZ(b,c)}function e0(a,b,c){cQ(a,b,c)}function e1(a,b){cR(a,b)}function e2(b,a){cb(b)&&(eF(a),eG(a),eH(a)),eD(b,a),eE(b,a),ey(b,a),eA(b,a)}function e3(a,d){let{owner:b}=d;if(eZ(a,b),1===b.shadowMode){let{data:{context:c}}=d,{stylesheetToken:e}=b.context;ca(c)||ca(c.lwc)||"manual"!==c.lwc.dom||eX(a),ca(e)||eY(a,e)}}function e4(a,b){let c=a.aChildren||a.children;b.aChildren=c;let{renderMode:d,shadowMode:e}=b;(1===e||0===d)&&(e6(b,c),a.aChildren=c,a.children=cH)}function e5(a,e){let c=f4(a);if(!ca(c))return c;let{sel:f,mode:g,ctor:h,owner:b}=e;if(eZ(a,b),1===b.shadowMode){let{stylesheetToken:d}=b.context;ca(d)||eY(a,d)}return f0(a,h,{mode:g,owner:b,tagName:f})}function e6(c,m){var g;let{cmpSlots:h}=c,a=c.cmpSlots=b(null);for(let i=0,n=m.length;i<n;i+=1){let e=m[i];if(cb(e))continue;let j="";ev(e)&&(j=(null===(g=e.data.attrs)|| void 0===g?void 0:g.slot)||"");let o=a[j]=a[j]||[];b_.call(o,e)}if(cd(c.isDirty)){let k=B(h);if(k.length!==B(a).length){fL(c);return}for(let l=0,p=k.length;l<p;l+=1){let d=k[l];if(ca(a[d])||h[d].length!==a[d].length){fL(c);return}let q=h[d],r=a[d];for(let f=0,s=a[d].length;f<s;f+=1)if(q[f]!==r[f]){fL(c);return}}}}const e7=new WeakMap;function e8(a){e7.set(a,1)}function e9(a){return e7.has(a)}function fa(e,f,g){let b={};for(let a=f;a<=g;++a){let c=e[a];if(eW(c)){let{key:d}=c;void 0!==d&&(b[d]=a)}}return b}function fb(b,c,k){let g=0,h=0,e=b.length-1,d=b[0],f=b[e],p=c.length-1,i=p,a=c[0],j=c[i],n,o,l,q=!1;for(;g<=e&&h<=i;)eW(d)?eW(f)?eW(a)?eW(j)?ew(d,a)?(eJ(d,a),d=b[++g],a=c[++h]):ew(f,j)?(eJ(f,j),f=b[--e],j=c[--i]):ew(d,j)?(eJ(d,j),e0(d.elm,k,cV(f.elm)),d=b[++g],j=c[--i]):ew(f,a)?(eJ(f,a),e0(a.elm,k,d.elm),f=b[--e],a=c[++h]):(void 0===n&&(n=fa(b,g,e)),ca(o=n[a.key])?(eK(a,k,d.elm),a=c[++h]):(eW(l=b[o])&&(l.sel!==a.sel?eK(a,k,d.elm):(eJ(l,a),q||(q=!0,b=[...b]),b[o]=void 0,e0(l.elm,k,d.elm))),a=c[++h])):j=c[--i]:a=c[++h]:f=b[--e]:d=b[++g];if(g<=e||h<=i){if(g>e){let r=i,m;do m=c[++r];while(!eW(m)&&r<p)eT(c,k,eW(m)?m.elm:null,h,i+1)}else eV(b,k,!0,g,e+1)}}function fc(e,f,b){let i=e.length,h=f.length;if(0===i){eT(f,b,null);return}if(0===h){eV(e,b,!0);return}let g=null;for(let c=h-1;c>=0;c-=1){let d=e[c],a=f[c];a!==d&&(eW(d)?eW(a)?(eJ(d,a),g=a.elm):eU(d,b,!0):eW(a)&&(eK(a,b,g),g=a.elm))}}const fd=Symbol.iterator;function fe(a){b_.call(fv().velements,a)}function aV(b,a,c=cH){let d=fv(),e,{key:f}=a;return{type:2,sel:b,data:a,children:c,elm:e,key:f,owner:d}}function aW(a){let b=a>0&&!(cc(a)||cd(a));return b?0:a}function aX(c,d,a,b){ca(b)||ca(b[c])||0===b[c].length||(a=b[c]);let e=fv(),{renderMode:f,shadowMode:g}=e;return 0===f?(fh(a),a):(1===g&&fh(a),aV("slot",d,a))}function aY(c,d,a,e=cH){let f=fv(),{key:g}=a,h,i,j,b={type:3,sel:c,data:a,children:e,elm:h,key:g,ctor:d,owner:f,mode:"open",aChildren:i,vm:j};return fe(b),b}function aZ(b,i){let a=[];if(fh(a),ca(b)||null===b)return a;let g=b[fd](),c=g.next(),d=0,{value:h,done:e}=c;for(;!1===e;){e=(c=g.next()).done;let f=i(h,d,0===d,!0===e);bV(f)?b_.apply(a,f):b_.call(a,f),d+=1,h=c.value}return a}function a$(d){let e=d.length,a=[];fh(a);for(let b=0;b<e;b+=1){let c=d[b];bV(c)?b_.apply(a,c):b_.call(a,c)}return a}function a_(a){let b,c,d;return{type:0,sel:b,text:a,elm:d,key:c,owner:fv()}}function a0(a){let b,c,d;return{type:1,sel:b,text:a,elm:d,key:c,owner:fv()}}function a1(a){return null==a?"":String(a)}function a2(b){let a=fv();if(cb(a))throw new Error;let c=a;return function(a){fG(c,b,c.component,a)}}function a3(b,a){switch(typeof a){case"number":case"string":return b+":"+a}}function a4(a){let b=fv();if(ca(a)||""===a)return a;if(cb(a))return null;let{idx:d,shadowMode:c}=b;return 1===c?b7.call(a,/\S+/g,a=>`${a}-${d}`):a}function a5(a){let b=fv();if(ca(a)||""===a)return a;if(cb(a))return null;let{idx:c,shadowMode:d}=b;return 1===d&&/^#/.test(a)?`${a}-${c}`:a}const ff=new Map;let fg=0;function a6(c,a,d,e=cH){if(null==a)return null;if(!aT(a))throw new Error(`Invalid LWC Constructor ${cj(a)} for custom element <${c}>.`);let b=ff.get(a);ca(b)&&(b=fg++,ff.set(a,b));let f=Object.assign(Object.assign({},d),{key:`dc:${b}:${d.key}`});return aY(c,a,f,e)}function fh(a){return e8(a),a}let fi=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};function fj(a){fi=a}function a7(a){return fi(a)}const fk=k({s:aX,h:aV,c:aY,i:aZ,f:a$,t:a_,d:a1,b:a2,k:a3,co:a0,dc:a6,ti:aW,gid:a4,fid:a5,shc:a7});function fl(a){return`${a}-host`}function fm(a){return fk.h("style",{key:"style",attrs:{type:"text/css"}},[fk.t(a)])}function fn(h,i){let{elm:c,context:a,renderMode:j,shadowMode:k}=h,{stylesheets:e,stylesheetToken:l}=i,{hasScopedStyles:m}=a,b,f,g,{stylesheetToken:d,hasTokenInClass:n,hasTokenInAttribute:o}=a;!ca(d)&&(n&&ab(c).remove(fl(d)),o&&c0(c,fl(d))),ca(e)||0===e.length||(b=l),ca(b)||(m&&(ab(c).add(fl(b)),f=!0),1!==j||1!==k||(c_(c,fl(b),""),g=!0)),a.stylesheetToken=b,a.hasTokenInClass=f,a.hasTokenInAttribute=g}function fo(g,h,a){let d=[],b;for(let e=0;e<g.length;e++){let c=g[e];if(bV(c))b_.apply(d,fo(c,h,a));else{let i=c[cq],j=i||1===a.shadowMode&&1===a.renderMode?h:void 0,k=0===a.renderMode?!i:0===a.shadowMode,f;1===a.renderMode?f=0===a.shadowMode:(ca(b)&&(b=fq(a)),f=cb(b)||0===b.shadowMode),b_.call(d,c(j,k,f))}}return d}function fp(c,d){let{stylesheets:a,stylesheetToken:e}=d,b=[];return ca(a)||0===a.length||(b=fo(a,e,c)),b}function fq(b){let a=b;for(;!cb(a);){if(1===a.renderMode)return a;a=a.owner}return a}function fr(b){let a=fq(b);return cb(a)||1!==a.shadowMode?a:null}function fs(d,a){let{renderMode:f,shadowMode:g}=d;if(1===f&&1===g)for(let c=0;c<a.length;c++)dg(a[c]);else if(cL||cP()){let h=bZ.call(a,"\n");return fm(h)}else{let e=fr(d),i=cb(e);for(let b=0;b<a.length;b++)i?dg(a[b]):dh(a[b],e.shadowRoot)}return null}let ft=!1,fu=null;function fv(){return fu}function fw(a){fu=a}function fx(a,b){throw new ReferenceError}function fy(a,b){a!==u&&(0===b.renderMode?bP.isTrue("light"===a.renderMode,`Light DOM components can't render shadow DOM templates. Add an 'lwc:render-mode="light"' directive to the root template tag of ${dq(b)}.`):bP.isTrue(ca(a.renderMode),`Shadow DOM components template can't render light DOM templates. Either remove the 'lwc:render-mode' directive from ${dq(b)} or set it to 'lwc:render-mode="shadow"`))}function fz(a,d){let e=ft,f=fu,c=[];return gj(a,a.owner,()=>{fu=a},()=>{let{component:f,context:g,cmpSlots:h,cmpTemplate:i,tro:e}=a;e.observe(()=>{if(d!==i){if(cb(i)||gg(a),!eh(d))throw new TypeError(`Invalid template returned by the render() method on ${a}. It must return an imported template (e.g.: \`import html from "./${a.def.name}.html"\`), instead, it has returned: ${cj(d)}.`);a.cmpTemplate=d,g.tplCache=b(null),g.hasScopedStyles=fA(d),fn(a,d);let e=fp(a,d);g.styleVNode=0===e.length?null:fs(a,e)}a.velements=[],ft=!0,c=d.call(void 0,fk,f,h,g.tplCache);let{styleVNode:j}=g;cb(j)||b4.call(c,j)})},()=>{ft=e,fu=f}),c}function fA(c){let{stylesheets:a}=c;if(!ca(a)){for(let b=0;b<a.length;b++)if(cc(a[b][cq]))return!0}return!1}let fB=null;function fC(a){return fB===a}function fD(a,c,d){let{component:e,callHook:f,owner:b}=a;gj(a,b,g,()=>{f(e,c,d)},g)}function fE(b,c){let d=fB,a;fB=b;try{let e=new c;if(fB.component!==e)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(f){a=Object(f)}finally{if(fB=d,!ca(a))throw ds(b,a),a}}function fF(a){let{def:{render:e},callHook:f,component:g,owner:b}=a,h=fv(),c,d=!1;return gj(a,b,()=>{fw(a)},()=>{a.tro.observe(()=>{c=f(g,e),d=!0})},()=>{fw(h)}),d?fz(a,c):[]}function fG(a,c,d,e){let{callHook:f,owner:b}=a;gj(a,b,g,()=>{f(d,c,[e])},g)}const fH=new Map;function a8(a,{tmpl:b}){return cf(a)&&fH.set(a,b),a}function fI(a){return fH.get(a)}function fJ(a){return new ax(()=>{let{isDirty:b}=a;cd(b)&&(fL(a),gh(a))})}function fK(a){a.tro.reset();let b=fF(a);return a.isDirty=!1,a.isScheduled=!1,b}function fL(a){a.isDirty=!0}const fM=new WeakMap;function fN(c,b){if(!cf(b))throw new TypeError;let a=fM.get(b);return ca(a)&&(a=function(a){fG(c,b,void 0,a)},fM.set(b,a)),a}const fO=b(null),fP=["rendered","connected","disconnected"];function a9(d){for(let b=0;b<fP.length;++b){let a=fP[b];if(a in d){let c=fO[a];ca(c)&&(fO[a]=c=[]),b_.call(c,d[a])}}}function fQ(c,b){let{component:d,def:e,context:f}=c;for(let a=0,g=b.length;a<g;++a)b[a].call(void 0,d,{},e,f)}let fR=0;const fS=new WeakMap;function fT(a,b,c=[]){return b.apply(a,c)}function fU(a,b,c){a[b]=c}function fV(a,b){return a[b]}function fW(a){f5(a)}function fX(b){let a=f3(b);1===a.state&&fY(b),ga(a),f5(a)}function fY(a){let b=f3(a);f$(b)}function fZ(a){f5(a)}function f$(a){let{state:c}=a;if(2!==c){let{oar:b,tro:d}=a;for(let e in d.reset(),b)b[e].reset();gc(a),gd(a),ge(a)}}function f_(a){f$(a)}function f0(g,h,i){var f;let{mode:j,owner:a,tagName:k}=i,e=es(h),c={elm:g,def:e,idx:fR++,state:0,isScheduled:!1,isDirty:!0,tagName:k,mode:j,owner:a,children:cH,aChildren:cH,velements:cH,cmpProps:b(null),cmpFields:b(null),cmpSlots:b(null),oar:b(null),cmpTemplate:null,renderMode:e.renderMode,shadowMode:f1(e,a),nearestShadowMode:(null==a?void 0:a.shadowRoot)?a.shadowMode:null!==(f=null==a?void 0:a.nearestShadowMode)&& void 0!==f?f:null,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNode:null,tplCache:d,wiredConnecting:cH,wiredDisconnecting:cH},tro:null,component:null,shadowRoot:null,renderRoot:null,callHook:fT,setHook:fU,getHook:fV};return c.tro=fJ(c),fE(c,e.ctor),gb(c)&&gy(c),c}function f1(b,c){var a;return cN?0===b.renderMode?0:cM&&cE.ENABLE_MIXED_SHADOW_MODE?"any"===b.shadowSupportMode?0:null!==(a=null==c?void 0:c.nearestShadowMode)&& void 0!==a?a:1:1:0}function f2(a,b){fS.set(a,b)}function f3(a){let b=fS.get(a);return b}function f4(a){let b=fS.get(a);return b}function f5(a){if(cc(a.isDirty)){let b=fK(a);f6(a,b)}}function f6(a,b){let{renderRoot:d,children:c}=a;a.children=b,(b.length>0||c.length>0)&&c!==b&&gj(a,a,()=>{},()=>{eI(c,b,d)},()=>{}),1===a.state&&f7(a)}function f7(a){let{def:{renderedCallback:b}}=a;if(cc(cL))return;let{rendered:c}=fO;c&&fQ(a,c),ca(b)||fD(a,b)}let f8=[];function f9(){let b=f8.sort((a,b)=>a.idx-b.idx);f8=[];for(let a=0,c=b.length;a<c;a+=1){let d=b[a];try{f5(d)}catch(e){throw a+1<c&&(0===f8.length&&cJ(f9),b4.apply(f8,b2.call(b,a+1))),e}}}function ga(a){let{state:d}=a;if(1===d)return;a.state=1;let{connected:b}=fO;b&&fQ(a,b),gb(a)&&gz(a);let{connectedCallback:c}=a.def;ca(c)||fD(a,c)}function gb(a){return A(a.def.wire).length>0}function gc(a){cd(a.isDirty)&&(a.isDirty=!0),a.state=2;let{disconnected:b}=fO;b&&fQ(a,b),gb(a)&&gA(a);let{disconnectedCallback:c}=a.def;ca(c)||fD(a,c)}function gd(e){let{velements:b}=e;for(let a=b.length-1;a>=0;a-=1){let{elm:c}=b[a];if(!ca(c)){let d=f4(c);ca(d)||f$(d)}}}function ge(a){let{aChildren:b}=a;gf(b)}function gf(c){for(let b=0,d=c.length;b<d;b+=1){let a=c[b];if(!cb(a)&&!ca(a.elm))switch(a.type){case 2:gf(a.children);break;case 3:{let e=f3(a.elm);f$(e)}}}}function gg(a){let{children:d,renderRoot:e}=a;for(let b=0,f=d.length;b<f;b++){let c=d[b];cb(c)||ca(c.elm)||cR(c.elm,e)}a.children=cH,gd(a),a.velements=cH}function gh(a){cc(cL)||cc(a.isScheduled)||(a.isScheduled=!0,0===f8.length&&cJ(f9),b_.call(f8,a))}function gi(b){let a=b;for(;!cb(a);){if(!ca(a.def.errorCallback))return a;a=a.owner}}function gj(c,d,e,f,g){let a;e();try{f()}catch(h){a=Object(h)}finally{if(g(),!ca(a)){ds(c,a);let b=cb(d)?void 0:gi(d);if(ca(b))throw a;gg(c);let i=b.def.errorCallback;fD(b,i,[a,a.wcStack])}}}const gk="$$DeprecatedWiredElementHostKey$$",gl="$$DeprecatedWiredParamsMetaKey$$",gm=new Map;class gn extends CustomEvent{constructor(a,{setNewContext:b,setDisconnectedCallback:c}){super(a,{bubbles:!0,composed:!0}),q(this,{setNewContext:{value:b},setDisconnectedCallback:{value:c}})}}function go(a,b){let{cmpFields:c}=a;return d=>{d!==a.cmpFields[b]&&(c[b]=d,dn(a,b))}}function gp(a,b){return c=>{gj(a,a.owner,g,()=>{b.call(a.component,c)},g)}}function gq(c,d,e){let f=!1,a=new ax(()=>{!1===f&&(f=!0,Promise.resolve().then(()=>{f=!1,a.reset(),b()}))}),b=()=>{let b;a.observe(()=>b=d(c)),e(b)};return{computeConfigAndUpdate:b,ro:a}}function gr(a,b,f){let{adapter:c}=b,d=gu(c);if(ca(d))return;let{elm:g,context:{wiredConnecting:e,wiredDisconnecting:h}}=a;b_.call(e,()=>{let a=new gn(d,{setNewContext(a){f(a)},setDisconnectedCallback(a){b_.call(h,a)}});c3(g,a)})}function gs(a,e,b){let{method:c,adapter:f,configCallback:h,dynamic:i}=b,d=ca(c)?go(a,e):gp(a,c),m,k;j(d,"$$DeprecatedWiredElementHostKey$$",{value:a.elm}),j(d,"$$DeprecatedWiredParamsMetaKey$$",{value:i}),gj(a,a,g,()=>{k=new f(d)},g);let{computeConfigAndUpdate:l,ro:n}=gq(a.component,h,b=>{gj(a,a,g,()=>{k.update(b,m)},g)});return ca(f.contextSchema)||gr(a,b,b=>{m!==b&&(m=b,1===a.state&&l())}),{connector:k,computeConfigAndUpdate:l,resetConfigWatcher:()=>n.reset()}}const gt=new Map;function gu(a){return gt.get(a)}function gv(a,b){gt.set(a,b)}function gw(b,a,c,d){a.adapter&&(a=a.adapter);let e=b.value;gm.set(b,{adapter:a,method:e,configCallback:c,dynamic:d})}function gx(b,a,c,d){a.adapter&&(a=a.adapter),gm.set(b,{adapter:a,configCallback:c,dynamic:d})}function gy(b){let{context:c,def:{wire:d}}=b,f=c.wiredConnecting=[],g=c.wiredDisconnecting=[];for(let e in d){let h=d[e],a=gm.get(h);if(!ca(a)){let{connector:i,computeConfigAndUpdate:j,resetConfigWatcher:k}=gs(b,e,a),l=a.dynamic.length>0;b_.call(f,()=>{if(i.connect(),!cE.ENABLE_WIRE_SYNC_EMIT&&l){Promise.resolve().then(j);return}j()}),b_.call(g,()=>{i.disconnect(),k()})}}}function gz(c){let{wiredConnecting:b}=c.context;for(let a=0,d=b.length;a<d;a+=1)b[a]()}function gA(a){let{wiredDisconnecting:b}=a.context;gj(a,a,g,()=>{for(let a=0,c=b.length;a<c;a+=1)b[a]()},g)}function ba(a){let b=gu(a);if(!ca(b))throw new Error("Adapter already has a context provider.");gv(a,b=cK());let c=new WeakSet;return(a,d)=>{if(c.has(a))throw new Error(`Adapter was already installed on ${a}.`);c.add(a);let{consumerConnectedCallback:e,consumerDisconnectedCallback:f}=d;a.addEventListener(b,a=>{let{setNewContext:d,setDisconnectedCallback:b}=a,c={provide(a){d(a)}};b(()=>{ca(f)||f(c)}),e(c),a.stopImmediatePropagation()})}}function bb(a){return d3.getReadOnlyProxy(a)}let gB=!1;function bc(a){bP.isFalse(gB,"Hooks are already overridden, only one definition is allowed."),gB=!0,fj(a.sanitizeHtmlContent)}!function(a){a.Text="text",a.Comment="comment",a.Raw="raw",a.Element="element",a.ShadowRoot="shadow-root"}(i||(i={}));const gC=/\s+/g;function gD(a){return new Set(a.split(gC).filter(a=>a.length))}function gE(a){return Array.from(a).join(" ")}function a(a){return function(){throw new TypeError(`"${a}" is not supported in this environment`)}}function bd(a){return{type:i.Element,name:a,parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}}}const gF=b(null),gG=new WeakMap;function gH(a,b){if(a!==b9.call(a)||gF[a])throw new TypeError("Invalid Registration");gF[a]=b,gG.set(b,a)}class be{constructor(){let{constructor:b}=this,a=gG.get(b);if(!a)throw new TypeError("Invalid Construction");return bd(a)}}const gI=!0;function bf(){return!1}const gJ=!1,gK=!1;function bg(a,b,c){if(null!==a.parent&&a.parent!==b){let e=a.parent.children.indexOf(a);a.parent.children.splice(e,1)}a.parent=b;let d=cb(c)?-1:b.children.indexOf(c);-1===d?b.children.push(a):b.children.splice(d,0,a)}function bh(b,a){let c=a.children.indexOf(b);a.children.splice(c,1)}function bi(a){return{type:i.Text,value:String(a),parent:null}}function bj(a){return{type:i.Comment,value:a,parent:null}}function bk(b){let{parent:a}=b;if(cb(a))return null;let c=a.children.indexOf(b);return a.children[c+1]||null}function bl(a,b){return a.shadowRoot={type:i.ShadowRoot,children:[],mode:b.mode,delegatesFocus:!!b.delegatesFocus},a.shadowRoot}function bm(a,c){var d,e;if(c in a)return a[c];if(a.type===i.Element){let b=cz(c);if(cu(b,a.name))return null!==(d=bp(a,b))&& void 0!==d&&d;if(cw(b)||cn(b))return bp(a,b);if("input"===a.name&&"value"===c)return null!==(e=bp(a,"value"))&& void 0!==e?e:""}}function bn(a,d,b){if(d in a)return a[d]=b;if(a.type===i.Element){let c=cz(d);if("innerHTML"===d){a.children=[{type:i.Raw,parent:a,value:b},];return}if(cu(c,a.name))return!0===b?bq(a,c,""):br(a,c);if(cw(c)||cn(c))return bq(a,c,b);if("input"===a.name&&"value"===c)return cb(b)||ca(b)?br(a,"value"):bq(a,"value",b)}}function bo(a,b){a.type===i.Text?a.value=b:a.type===i.Element&&(a.children=[{type:i.Text,parent:a,value:b},])}function bp(b,c,d=null){let a=b.attributes.find(a=>a.name===c&&a.namespace===d);return a?a.value:null}function bq(b,e,c,a=null){let d=b.attributes.find(b=>b.name===e&&b.namespace===a);ca(a)&&(a=null),ca(d)?b.attributes.push({name:e,namespace:a,value:String(c)}):d.value=c}function br(a,b,c){a.attributes=a.attributes.filter(a=>a.name!==b&&a.namespace!==c)}function bs(a){function b(){let b=a.attributes.find(a=>"class"===a.name&&cb(a.namespace));return ca(b)&&(b={name:"class",namespace:null,value:""},a.attributes.push(b)),b}return{add(...c){let a=b(),d=gD(a.value);c.forEach(a=>d.add(a)),a.value=gE(d)},remove(...c){let a=b(),d=gD(a.value);c.forEach(a=>d.delete(a)),a.value=gE(d)}}}function bt(a,d,e,f){let b=a.attributes.find(a=>"style"===a.name&&cb(a.namespace)),c=`${d}: ${e}${f?" !important":""}`;ca(b)?a.attributes.push({name:"style",namespace:null,value:c}):b.value+=`; ${c}`}function bu(a){return!cb(a.parent)}const bv=g,bw=g,bx=g,by=g,bz=a("dispatchEvent"),bA=a("getBoundingClientRect"),bB=a("querySelector"),bC=a("querySelectorAll"),bD=a("getElementsByTagName"),bE=a("getElementsByClassName"),bF=a("getChildren"),bG=a("getChildNodes"),bH=a("getFirstChild"),bI=a("getFirstElementChild"),bJ=a("getLastChild"),bK=a("getLastElementChild");function bL(a,b,c){gH(a,b)}function bM(a){return gF[a]}const bN=be;T(bl),R(bj),P(bd),Q(bi),at(bL),aa(bz),X(bp),ae(bA),ak(bG),aj(bF),ac(bs),au(bM),ai(bE),ah(bD),al(bH),am(bI),an(bJ),ao(bK),U(bm),L(bN),N(bg),ar(bv),as(bw),aq(bu),M(bf),J(!1),K(!1),S(bk),af(bB),ag(bC),O(bh),Z(br),_(by),Y(bq),ad(bt),V(bn),W(bo),I(!0),$(bx);const gL={'"':""","'":"'","<":"<",">":">","&":"&"};function gM(a){return a.replace(/["'<>&]/g,a=>gL[a])}function gN(a){return a.map(a=>a.value.length?`${a.name}=${JSON.stringify(gM(a.value))}`:a.name).join(" ")}function gO(a){return a.map(a=>{switch(a.type){case i.Text:return""===a.value?"\u200D":gM(a.value);case i.Comment:return`<!--${gM(a.value)}-->`;case i.Raw:return a.value;case i.Element:return gQ(a)}}).join("")}function gP(a){let b=[`shadowroot="${a.mode}"`];return a.delegatesFocus&&b.push("shadowrootdelegatesfocus"),`<template ${b.join(" ")}>${gO(a.children)}</template>`}function gQ(a){let b="",{name:c}=a,d=a.attributes.length?` ${gN(a.attributes)}`:"",e=gO(a.children);return b+=`<${c}${d}>`,a.shadowRoot&&(b+=gP(a.shadowRoot)),b+=e,cs(c)||(b+=`</${c}>`),b}const gR={type:i.Element,name:"fake-root-element",parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}};function bO(b,d,c={}){if(!ch(b))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${b}.`);if(!cf(d))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${d}.`);if(!cg(c)||cb(c))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${c}.`);let a=bd(b);for(let[e,f]of(f0(a,d,{mode:"open",owner:null,tagName:b}),Object.entries(c)))a[e]=f;return a.parent=gR,fX(a),gQ(a)}k(c),f(c.prototype),exports.LightningElement=c,exports.api=aL,exports.createContextProvider=ba,exports.getComponentDef=aU,exports.isComponentConstructor=aT,exports.readonly=bb,exports.register=a9,exports.registerComponent=a8,exports.registerDecorators=aO,exports.registerTemplate=aQ,exports.renderComponent=bO,exports.sanitizeAttribute=aR,exports.setFeatureFlag=G,exports.setFeatureFlagForTest=H,exports.setHooks=bc,exports.track=aM,exports.unwrap=aB,exports.wire=aN
|