lwc 2.19.0 → 2.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/engine-dom/esm/es2017/engine-dom.js +40 -39
- package/dist/engine-dom/iife/es2017/engine-dom.js +40 -39
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +38 -37
- package/dist/engine-dom/iife/es5/engine-dom.js +41 -40
- package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +38 -38
- package/dist/engine-dom/umd/es2017/engine-dom.js +40 -39
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +38 -37
- package/dist/engine-dom/umd/es5/engine-dom.js +41 -40
- package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +38 -38
- package/dist/engine-server/commonjs/es2017/engine-server.js +39 -51
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
- package/dist/engine-server/esm/es2017/engine-server.js +39 -51
- package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3 -3
- package/dist/wire-service/esm/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/iife/es5/wire-service.js +2 -2
- package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es5/wire-service.js +2 -2
- package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
- package/package.json +7 -7
|
@@ -298,6 +298,9 @@
|
|
|
298
298
|
var KEY__SHADOW_TOKEN = '$shadowToken$';
|
|
299
299
|
var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
300
300
|
var KEY__SCOPED_CSS = '$scoped$';
|
|
301
|
+
var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';
|
|
302
|
+
var SVG_NAMESPACE = 'http://www.w3.org/2000/svg';
|
|
303
|
+
var XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
|
|
301
304
|
/**
|
|
302
305
|
* Map composed of properties to attributes not following the HTML property to attribute mapping
|
|
303
306
|
* convention.
|
|
@@ -346,11 +349,7 @@
|
|
|
346
349
|
CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);
|
|
347
350
|
return attributeName;
|
|
348
351
|
}
|
|
349
|
-
|
|
350
|
-
var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';
|
|
351
|
-
var SVG_NAMESPACE = 'http://www.w3.org/2000/svg';
|
|
352
|
-
var XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
|
|
353
|
-
/** version: 2.19.0 */
|
|
352
|
+
/** version: 2.20.1 */
|
|
354
353
|
|
|
355
354
|
/*
|
|
356
355
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -6459,7 +6458,7 @@
|
|
|
6459
6458
|
|
|
6460
6459
|
return ctor;
|
|
6461
6460
|
}
|
|
6462
|
-
/* version: 2.
|
|
6461
|
+
/* version: 2.20.1 */
|
|
6463
6462
|
|
|
6464
6463
|
/*
|
|
6465
6464
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -6485,10 +6484,6 @@
|
|
|
6485
6484
|
var isIE11 = !isUndefined$1(document.documentMode);
|
|
6486
6485
|
var stylesheetCache = new Map(); //
|
|
6487
6486
|
|
|
6488
|
-
function isDocument(target) {
|
|
6489
|
-
return !isUndefined$1(target.head);
|
|
6490
|
-
}
|
|
6491
|
-
|
|
6492
6487
|
function createFreshStyleElement(content) {
|
|
6493
6488
|
var elm = document.createElement('style');
|
|
6494
6489
|
elm.type = 'text/css';
|
|
@@ -6497,11 +6492,11 @@
|
|
|
6497
6492
|
}
|
|
6498
6493
|
|
|
6499
6494
|
function createStyleElement(content, cacheData) {
|
|
6500
|
-
var
|
|
6501
|
-
|
|
6495
|
+
var element = cacheData.element,
|
|
6496
|
+
usedElement = cacheData.usedElement; // If the <style> was already used, then we should clone it. We cannot insert
|
|
6502
6497
|
// the same <style> in two places in the DOM.
|
|
6503
6498
|
|
|
6504
|
-
if (
|
|
6499
|
+
if (usedElement) {
|
|
6505
6500
|
// For a mysterious reason, IE11 doesn't like the way we clone <style> nodes
|
|
6506
6501
|
// and will render the incorrect styles if we do things that way. It's just
|
|
6507
6502
|
// a perf optimization, so we can skip it for IE11.
|
|
@@ -6511,12 +6506,12 @@
|
|
|
6511
6506
|
// faster to call `cloneNode()` on an existing node than to recreate it every time.
|
|
6512
6507
|
|
|
6513
6508
|
|
|
6514
|
-
return
|
|
6509
|
+
return element.cloneNode(true);
|
|
6515
6510
|
} // We don't clone every time, because that would be a perf tax on the first time
|
|
6516
6511
|
|
|
6517
6512
|
|
|
6518
|
-
cacheData.
|
|
6519
|
-
return
|
|
6513
|
+
cacheData.usedElement = true;
|
|
6514
|
+
return element;
|
|
6520
6515
|
}
|
|
6521
6516
|
|
|
6522
6517
|
function createConstructableStylesheet(content) {
|
|
@@ -6539,40 +6534,36 @@
|
|
|
6539
6534
|
|
|
6540
6535
|
function insertStyleElement(content, target, cacheData) {
|
|
6541
6536
|
var elm = createStyleElement(content, cacheData);
|
|
6542
|
-
|
|
6543
|
-
targetAnchorPoint.appendChild(elm);
|
|
6537
|
+
target.appendChild(elm);
|
|
6544
6538
|
}
|
|
6545
6539
|
|
|
6546
|
-
function
|
|
6547
|
-
// Constructable stylesheets are only supported in certain browsers:
|
|
6548
|
-
// https://caniuse.com/mdn-api_document_adoptedstylesheets
|
|
6549
|
-
// The reason we use it is for perf: https://github.com/salesforce/lwc/pull/2460
|
|
6550
|
-
if (supportsConstructableStylesheets) {
|
|
6551
|
-
insertConstructableStylesheet(content, target, cacheData);
|
|
6552
|
-
} else {
|
|
6553
|
-
// Fall back to <style> element
|
|
6554
|
-
insertStyleElement(content, target, cacheData);
|
|
6555
|
-
}
|
|
6556
|
-
}
|
|
6557
|
-
|
|
6558
|
-
function getCacheData(content) {
|
|
6540
|
+
function getCacheData(content, useConstructableStylesheet) {
|
|
6559
6541
|
var cacheData = stylesheetCache.get(content);
|
|
6560
6542
|
|
|
6561
6543
|
if (isUndefined$1(cacheData)) {
|
|
6562
6544
|
cacheData = {
|
|
6563
|
-
stylesheet:
|
|
6545
|
+
stylesheet: undefined,
|
|
6546
|
+
element: undefined,
|
|
6564
6547
|
roots: undefined,
|
|
6565
6548
|
global: false,
|
|
6566
|
-
|
|
6549
|
+
usedElement: false
|
|
6567
6550
|
};
|
|
6568
6551
|
stylesheetCache.set(content, cacheData);
|
|
6552
|
+
} // Create <style> elements or CSSStyleSheets on-demand, as needed
|
|
6553
|
+
|
|
6554
|
+
|
|
6555
|
+
if (useConstructableStylesheet && isUndefined$1(cacheData.stylesheet)) {
|
|
6556
|
+
cacheData.stylesheet = createConstructableStylesheet(content);
|
|
6557
|
+
} else if (!useConstructableStylesheet && isUndefined$1(cacheData.element)) {
|
|
6558
|
+
cacheData.element = createFreshStyleElement(content);
|
|
6569
6559
|
}
|
|
6570
6560
|
|
|
6571
6561
|
return cacheData;
|
|
6572
6562
|
}
|
|
6573
6563
|
|
|
6574
6564
|
function insertGlobalStylesheet(content) {
|
|
6575
|
-
|
|
6565
|
+
// Force a <style> element for global stylesheets. See comment below.
|
|
6566
|
+
var cacheData = getCacheData(content, false);
|
|
6576
6567
|
|
|
6577
6568
|
if (cacheData.global) {
|
|
6578
6569
|
// already inserted
|
|
@@ -6580,12 +6571,13 @@
|
|
|
6580
6571
|
}
|
|
6581
6572
|
|
|
6582
6573
|
cacheData.global = true; // mark inserted
|
|
6574
|
+
// TODO [#2922]: use document.adoptedStyleSheets in supported browsers. Currently we can't, due to backwards compat.
|
|
6583
6575
|
|
|
6584
|
-
|
|
6576
|
+
insertStyleElement(content, document.head, cacheData);
|
|
6585
6577
|
}
|
|
6586
6578
|
|
|
6587
6579
|
function insertLocalStylesheet(content, target) {
|
|
6588
|
-
var cacheData = getCacheData(content);
|
|
6580
|
+
var cacheData = getCacheData(content, supportsConstructableStylesheets);
|
|
6589
6581
|
var roots = cacheData.roots;
|
|
6590
6582
|
|
|
6591
6583
|
if (isUndefined$1(roots)) {
|
|
@@ -6596,8 +6588,16 @@
|
|
|
6596
6588
|
}
|
|
6597
6589
|
|
|
6598
6590
|
roots.add(target); // mark inserted
|
|
6591
|
+
// Constructable stylesheets are only supported in certain browsers:
|
|
6592
|
+
// https://caniuse.com/mdn-api_document_adoptedstylesheets
|
|
6593
|
+
// The reason we use it is for perf: https://github.com/salesforce/lwc/pull/2460
|
|
6599
6594
|
|
|
6600
|
-
|
|
6595
|
+
if (supportsConstructableStylesheets) {
|
|
6596
|
+
insertConstructableStylesheet(content, target, cacheData);
|
|
6597
|
+
} else {
|
|
6598
|
+
// Fall back to <style> element
|
|
6599
|
+
insertStyleElement(content, target, cacheData);
|
|
6600
|
+
}
|
|
6601
6601
|
}
|
|
6602
6602
|
|
|
6603
6603
|
function insertStylesheet(content, target) {
|
|
@@ -7257,7 +7257,7 @@
|
|
|
7257
7257
|
});
|
|
7258
7258
|
freeze(LightningElement);
|
|
7259
7259
|
seal(LightningElement.prototype);
|
|
7260
|
-
/* version: 2.
|
|
7260
|
+
/* version: 2.20.1 */
|
|
7261
7261
|
|
|
7262
7262
|
exports.LightningElement = LightningElement;
|
|
7263
7263
|
exports.__unstable__ProfilerControl = profilerControl;
|
|
@@ -233,62 +233,44 @@ const KEY__SHADOW_STATIC = '$shadowStaticNode$';
|
|
|
233
233
|
const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
234
234
|
const KEY__SCOPED_CSS = '$scoped$';
|
|
235
235
|
|
|
236
|
+
/*
|
|
237
|
+
* Copyright (c) 2022, salesforce.com, inc.
|
|
238
|
+
* All rights reserved.
|
|
239
|
+
* SPDX-License-Identifier: MIT
|
|
240
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
241
|
+
*/
|
|
242
|
+
const HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';
|
|
243
|
+
const XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';
|
|
244
|
+
const SVG_NAMESPACE = 'http://www.w3.org/2000/svg';
|
|
245
|
+
const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
|
|
246
|
+
|
|
236
247
|
/*
|
|
237
248
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
238
249
|
* All rights reserved.
|
|
239
250
|
* SPDX-License-Identifier: MIT
|
|
240
251
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
241
252
|
*/
|
|
242
|
-
//
|
|
243
|
-
//
|
|
244
|
-
|
|
253
|
+
// Void elements are elements that self-close even without an explicit solidus (slash),
|
|
254
|
+
// e.g. `</tagName>` or `<tagName />`. For instance, `<meta>` closes on its own; no need for a slash.
|
|
255
|
+
// These only come from HTML; there are no void elements in the SVG or MathML namespaces.
|
|
256
|
+
// See: https://html.spec.whatwg.org/multipage/syntax.html#syntax-tags
|
|
257
|
+
const VOID_ELEMENTS_SET = new Set([
|
|
245
258
|
'area',
|
|
246
259
|
'base',
|
|
247
260
|
'br',
|
|
248
|
-
'circle',
|
|
249
261
|
'col',
|
|
250
|
-
'ellipse',
|
|
251
|
-
'feBlend',
|
|
252
|
-
'feColorMatrix',
|
|
253
|
-
'feFuncR',
|
|
254
|
-
'feFuncG',
|
|
255
|
-
'feFuncB',
|
|
256
|
-
'feFuncA',
|
|
257
|
-
'feImage',
|
|
258
|
-
'feComposite',
|
|
259
|
-
'feConvolveMatrix',
|
|
260
|
-
'feDiffuseLighting',
|
|
261
|
-
'feDisplacementMap',
|
|
262
|
-
'feDropShadow',
|
|
263
|
-
'feFlood',
|
|
264
|
-
'feGaussianBlur',
|
|
265
|
-
'feMerge',
|
|
266
|
-
'feMergeNode',
|
|
267
|
-
'feMorphology',
|
|
268
|
-
'feOffset',
|
|
269
|
-
'feSpecularLighting',
|
|
270
|
-
'feTile',
|
|
271
|
-
'feTurbulence',
|
|
272
|
-
'fePointLight',
|
|
273
262
|
'embed',
|
|
274
263
|
'hr',
|
|
275
264
|
'img',
|
|
276
265
|
'input',
|
|
277
|
-
'keygen',
|
|
278
|
-
'line',
|
|
279
266
|
'link',
|
|
280
|
-
'menuitem',
|
|
281
267
|
'meta',
|
|
282
|
-
'param',
|
|
283
|
-
'path',
|
|
284
|
-
'rect',
|
|
285
268
|
'source',
|
|
286
269
|
'track',
|
|
287
270
|
'wbr',
|
|
288
|
-
];
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
return VOID_ELEMENTS_SET.has(name);
|
|
271
|
+
]);
|
|
272
|
+
function isVoidElement(name, namespace) {
|
|
273
|
+
return namespace === HTML_NAMESPACE && VOID_ELEMENTS_SET.has(name.toLowerCase());
|
|
292
274
|
}
|
|
293
275
|
|
|
294
276
|
/*
|
|
@@ -429,9 +411,6 @@ function htmlEscape(str, attrMode = false) {
|
|
|
429
411
|
const searchValue = attrMode ? /["&]/g : /["'<>&]/g;
|
|
430
412
|
return str.replace(searchValue, (char) => ESCAPED_CHARS[char]);
|
|
431
413
|
}
|
|
432
|
-
const XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';
|
|
433
|
-
const SVG_NAMESPACE = 'http://www.w3.org/2000/svg';
|
|
434
|
-
const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
|
|
435
414
|
|
|
436
415
|
/*
|
|
437
416
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -440,9 +419,9 @@ const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
|
|
|
440
419
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
441
420
|
*/
|
|
442
421
|
// Increment whenever the LWC template compiler changes
|
|
443
|
-
const LWC_VERSION = "2.
|
|
422
|
+
const LWC_VERSION = "2.20.1";
|
|
444
423
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
445
|
-
/** version: 2.
|
|
424
|
+
/** version: 2.20.1 */
|
|
446
425
|
|
|
447
426
|
/*
|
|
448
427
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -551,7 +530,7 @@ function setFeatureFlagForTest(name, value) {
|
|
|
551
530
|
setFeatureFlag(name, value);
|
|
552
531
|
}
|
|
553
532
|
}
|
|
554
|
-
/** version: 2.
|
|
533
|
+
/** version: 2.20.1 */
|
|
555
534
|
|
|
556
535
|
/* proxy-compat-disable */
|
|
557
536
|
|
|
@@ -6294,7 +6273,7 @@ function freezeTemplate(tmpl) {
|
|
|
6294
6273
|
});
|
|
6295
6274
|
}
|
|
6296
6275
|
}
|
|
6297
|
-
/* version: 2.
|
|
6276
|
+
/* version: 2.20.1 */
|
|
6298
6277
|
|
|
6299
6278
|
/*
|
|
6300
6279
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -6336,10 +6315,11 @@ function unsupportedMethod(name) {
|
|
|
6336
6315
|
throw new TypeError(`"${name}" is not supported in this environment`);
|
|
6337
6316
|
};
|
|
6338
6317
|
}
|
|
6339
|
-
function createElement(name) {
|
|
6318
|
+
function createElement(name, namespace) {
|
|
6340
6319
|
return {
|
|
6341
6320
|
type: HostNodeType.Element,
|
|
6342
6321
|
name,
|
|
6322
|
+
namespace: namespace !== null && namespace !== void 0 ? namespace : HTML_NAMESPACE,
|
|
6343
6323
|
parent: null,
|
|
6344
6324
|
shadowRoot: null,
|
|
6345
6325
|
children: [],
|
|
@@ -6686,15 +6666,22 @@ function serializeShadowRoot(shadowRoot) {
|
|
|
6686
6666
|
}
|
|
6687
6667
|
function serializeElement(element) {
|
|
6688
6668
|
let output = '';
|
|
6689
|
-
const { name } = element;
|
|
6669
|
+
const { name, namespace } = element;
|
|
6670
|
+
const isForeignElement = namespace !== HTML_NAMESPACE;
|
|
6671
|
+
const hasChildren = element.children.length > 0;
|
|
6690
6672
|
const attrs = element.attributes.length ? ` ${serializeAttributes(element.attributes)}` : '';
|
|
6691
|
-
|
|
6692
|
-
|
|
6673
|
+
output += `<${name}${attrs}`;
|
|
6674
|
+
// Note that foreign elements can have children but not shadow roots
|
|
6675
|
+
if (isForeignElement && !hasChildren) {
|
|
6676
|
+
output += '/>';
|
|
6677
|
+
return output;
|
|
6678
|
+
}
|
|
6679
|
+
output += '>';
|
|
6693
6680
|
if (element.shadowRoot) {
|
|
6694
6681
|
output += serializeShadowRoot(element.shadowRoot);
|
|
6695
6682
|
}
|
|
6696
|
-
output += children;
|
|
6697
|
-
if (!isVoidElement(name)) {
|
|
6683
|
+
output += serializeChildNodes(element.children);
|
|
6684
|
+
if (!isVoidElement(name, namespace) || hasChildren) {
|
|
6698
6685
|
output += `</${name}>`;
|
|
6699
6686
|
}
|
|
6700
6687
|
return output;
|
|
@@ -6709,6 +6696,7 @@ function serializeElement(element) {
|
|
|
6709
6696
|
const FakeRootElement = {
|
|
6710
6697
|
type: HostNodeType.Element,
|
|
6711
6698
|
name: 'fake-root-element',
|
|
6699
|
+
namespace: HTML_NAMESPACE,
|
|
6712
6700
|
parent: null,
|
|
6713
6701
|
shadowRoot: null,
|
|
6714
6702
|
children: [],
|
|
@@ -6747,7 +6735,7 @@ function renderComponent(tagName, Ctor, props = {}) {
|
|
|
6747
6735
|
*/
|
|
6748
6736
|
freeze(LightningElement);
|
|
6749
6737
|
seal(LightningElement.prototype);
|
|
6750
|
-
/* version: 2.
|
|
6738
|
+
/* version: 2.20.1 */
|
|
6751
6739
|
|
|
6752
6740
|
exports.LightningElement = LightningElement;
|
|
6753
6741
|
exports.api = api$1;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});const{assign:t,create:n,defineProperties:r,defineProperty:o,freeze:i,getOwnPropertyDescriptor:s,getOwnPropertyNames:l,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:d,seal:f,setPrototypeOf:p}=Object,{isArray:h}=Array,{copyWithin:m,fill:g,filter:w,find:y,indexOf:b,join:v,map:C,pop:E,push:k,reduce:x,reverse:S,shift:M,slice:T,sort:A,splice:O,unshift:P,forEach:$}=Array.prototype,{fromCharCode:L}=String,{charCodeAt:N,replace:R,slice:F,toLowerCase:_}=String.prototype;function D(e){return void 0===e}function I(e){return null===e}function H(e){return!0===e}function j(e){return!1===e}function B(e){return"function"==typeof e}function W(e){return"string"==typeof e}function V(){}const G={}.toString;function K(e){return e&&e.toString?h(e)?v.call(C.call(e,K),","):e.toString():"object"==typeof e?G.call(e):e+""}function z(e,t){do{const n=s(e,t);if(!D(n))return n;e=a(e)}while(null!==e)}const U=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:q,AriaPropNameToAttrNameMap:X}=(()=>{const e=n(null),t=n(null);return $.call(U,(n=>{const r=_.call(R.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})();function Y(e){return e in q}const J=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),Q=new Set(["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"]);const Z=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 ee(e,t){const n=Z.get(e);return void 0!==n&&(0===n.size||n.has(t))}const te=new Set(["role","accesskey","class","contenteditable","contextmenu","dir","draggable","dropzone","hidden","id","itemprop","lang","slot","spellcheck","style","tabindex","title"]);function ne(e){return te.has(e)}const re=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"]]),oe=new Map;function ie(e){const t=X[e];if(!D(t))return t;const n=re.get(e);if(!D(n))return n;const r=oe.get(e);if(!D(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=N.call(e,t);o+=n>=65&&n<=90?"-"+L(n+32):L(n)}return oe.set(e,o),o}const se={'"':""","'":"'","<":"<",">":">","&":"&"};function le(e,t=!1){const n=t?/["&]/g:/["'<>&]/g;return e.replace(n,(e=>se[e]))}if("function"!=typeof Event){class e{}o(J,"Event",{value:e,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class e extends Event{}o(J,"CustomEvent",{value:e,configurable:!0,writable:!0})}const ae={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HMR:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null};J.lwcRuntimeFlags||Object.defineProperty(J,"lwcRuntimeFlags",{value:n(null)});const ce=J.lwcRuntimeFlags;let ue=[];const de=f(n(null)),fe=f([]);function pe(){const e=ue;ue=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function he(e){0===ue.length&&Promise.resolve().then(pe),k.call(ue,e)}const me=new WeakMap;let ge=null;function we(e,t){const n=me.get(e);if(!D(n)){const e=n[t];if(!D(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function ye(e,t){if(null===ge)return;const r=ge,o=function(e){let t=me.get(e);if(D(t)){const r=n(null);t=r,me.set(e,r)}return t}(e);let i=o[t];if(D(i))i=[],o[t]=i;else if(i[0]===r)return;-1===b.call(i,r)&&r.link(i)}class be{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=ge;let n;ge=this;try{e()}catch(e){n=Object(e)}finally{if(ge=t,void 0!==n)throw n}}reset(){const{listeners:e}=this,t=e.length;if(t>0){for(let n=0;n<t;n+=1){const t=e[n],r=b.call(e[n],this);O.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){k.call(e,this),k.call(this.listeners,e)}}function ve(e,t){we(e.component,t)}function Ce(e,t){ye(e.component,t)}function Ee(e){return`<${_.call(e.tagName)}>`}function ke(e,t){if(!u(t)&&D(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!I(n);)k.call(t,Ee(n)),n=n.owner;return t.reverse().join("\n\t")}(e);o(t,"wcStack",{get:()=>n})}}function xe(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Se(e){return B(e)&&c.call(e,"__circular__")}const Me="undefined"!=typeof HTMLElement?HTMLElement:function(){},Te=Me.prototype;function Ae(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}t(n(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:Ae("offsetHeight")},offsetLeft:{readOnly:!0,error:Ae("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Ae("offsetTop")},offsetWidth:{readOnly:!0,error:Ae("offsetWidth")},role:{attribute:"role"}});let Oe,Pe=null;function $e(e,t){return e!==Pe||t!==Oe}function Le(e,t){Pe=null,Oe=void 0}function Ne(e,t){Pe=e,Oe=t}const Re=n(null);$.call(d(X),(e=>{const t=z(Te,e);D(t)||(Re[e]=t)})),$.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=z(Te,e);D(t)||(Re[e]=t)}));const{isArray:Fe}=Array,{prototype:_e,getPrototypeOf:De,create:Ie,defineProperty:He,isExtensible:je,getOwnPropertyDescriptor:Be,getOwnPropertyNames:We,getOwnPropertySymbols:Ve,preventExtensions:Ge,hasOwnProperty:Ke}=Object,{push:ze,concat:Ue}=Array.prototype;function qe(e){return void 0===e}function Xe(e){return"function"==typeof e}const Ye=new WeakMap;function Je(e,t){Ye.set(e,t)}const Qe=e=>Ye.get(e)||e;class Ze{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(Ke.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;qe(n)||(e.get=this.wrapGetter(n)),qe(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=Be(n,t);if(!qe(r)){const n=this.wrapDescriptor(r);He(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;Ue.call(We(t),Ve(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;qe(n)||Ke.call(e,n)||He(e,n,Ie(null)),Ge(e)}apply(e,t,n){}construct(e,t,n){}get(e,t){const{originalTarget:n,membrane:{valueObserved:r}}=this,o=n[t];return r(n,t),this.wrapValue(o)}has(e,t){const{originalTarget:n,membrane:{tagPropertyKey:r,valueObserved:o}}=this;return o(n,t),t in n||t===r}ownKeys(e){const{originalTarget:t,membrane:{tagPropertyKey:n}}=this,r=qe(n)||Ke.call(t,n)?[]:[n];return ze.apply(r,We(t)),ze.apply(r,Ve(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!je(e)&&(!!je(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return De(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=Be(n,t);if(qe(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},He(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const et=new WeakMap,tt=new WeakMap,nt=new WeakMap,rt=new WeakMap;class ot extends Ze{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=et.get(e);if(!qe(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Qe(this)))};return et.set(e,r),nt.set(r,e),r}wrapSetter(e){const t=tt.get(e);if(!qe(t))return t;const n=function(t){e.call(Qe(this),Qe(t))};return tt.set(e,n),rt.set(n,e),n}unwrapDescriptor(e){if(Ke.call(e,"value"))e.value=Qe(e.value);else{const{set:t,get:n}=e;qe(n)||(e.get=this.unwrapGetter(n)),qe(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=nt.get(e);if(!qe(t))return t;const n=this,r=function(){return Qe(e.call(n.wrapValue(this)))};return et.set(r,e),nt.set(e,r),r}unwrapSetter(e){const t=rt.get(e);if(!qe(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return tt.set(r,e),rt.set(e,r),r}set(e,t,n){const{originalTarget:r,membrane:{valueMutated:o}}=this;return r[t]!==n?(r[t]=n,o(r,t)):"length"===t&&Fe(r)&&o(r,t),!0}deleteProperty(e,t){const{originalTarget:n,membrane:{valueMutated:r}}=this;return delete n[t],r(n,t),!0}setPrototypeOf(e,t){}preventExtensions(e){if(je(e)){const{originalTarget:t}=this;if(Ge(t),je(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!Ke.call(r,t)||(He(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const it=new WeakMap,st=new WeakMap;class lt extends Ze{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=it.get(e);if(!qe(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Qe(this)))};return it.set(e,r),r}wrapSetter(e){const t=st.get(e);if(!qe(t))return t;const n=function(e){};return st.set(e,n),n}set(e,t,n){return!1}deleteProperty(e,t){return!1}setPrototypeOf(e,t){}preventExtensions(e){return!1}defineProperty(e,t,n){return!1}}function at(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(Fe(e))return!0;const t=De(e);return t===_e||null===t||null===De(t)}const ct=(e,t)=>{},ut=(e,t)=>{};function dt(e){return Fe(e)?[]:{}}const ft=Symbol.for("@@lockerLiveValue"),pt=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=Xe(t)?t:ut,this.valueObserved=Xe(n)?n:ct,this.valueIsObservable=Xe(r)?r:at,this.tagPropertyKey=o}getProxy(e){const t=Qe(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=Qe(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return Qe(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(qe(t)){const n=new ot(this,e);t=new Proxy(dt(e),n),Je(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(qe(t)){const n=new lt(this,e);t=new Proxy(dt(e),n),Je(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:ye,valueMutated:we,tagPropertyKey:ft});function ht(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new TypeError;if(!B(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=tr(this);if(!Nn(t))return Ce(t,e),n.call(t.elm)},set(t){const n=tr(this);return t!==n.cmpProps[e]&&(n.cmpProps[e]=t,ve(n,e)),r.call(n.elm,t)}}}const mt=function(){if(I(Ln))throw new ReferenceError("Illegal constructor");const e=Ln,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(p(n,r.prototype),e.component=this,1===arguments.length){const{callHook:t,setHook:n,getHook:r}=arguments[0];e.callHook=t,e.setHook=n,e.getHook=r}return this[ft]=void 0,er(o,e),er(n,e),1===e.renderMode?e.renderRoot=gt(e):e.renderRoot=n,this};function gt(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o},renderer:{attachShadow:i}}=e,s=i(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=s,er(s,e),s}mt.prototype={constructor:mt,dispatchEvent(e){const t=tr(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=tr(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,Bn(r,t),n)},removeEventListener(e,t,n){const r=tr(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,Bn(r,t),n)},hasAttribute(e){const t=tr(this),{elm:n,renderer:{getAttribute:r}}=t;return!I(r(n,e))},hasAttributeNS(e,t){const n=tr(this),{elm:r,renderer:{getAttribute:o}}=n;return!I(o(r,t,e))},removeAttribute(e){const t=tr(this),{elm:n,renderer:{removeAttribute:r}}=t;Ne(n,e),r(n,e),Le()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=tr(this);Ne(n,t),r(n,t,e),Le()},getAttribute(e){const t=tr(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=tr(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=tr(this),{elm:r,renderer:{setAttribute:o}}=n;Ne(r,e),o(r,e,t),Le()},setAttributeNS(e,t,n){const r=tr(this),{elm:o,renderer:{setAttribute:i}}=r;Ne(o,t),i(o,t,n,e),Le()},getBoundingClientRect(){const e=tr(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=tr(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=tr(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return tr(this).shadowRoot},get shadowRoot(){return null},get children(){const e=tr(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=tr(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=tr(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=tr(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=tr(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=tr(this);return e.renderer.getLastElementChild(e.elm)},render(){return tr(this).def.template},toString(){return`[object ${tr(this).def.name}]`}};const wt=n(null),yt=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of yt)wt[e]={value(t){const n=tr(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};r(mt.prototype,wt);const bt=n(null);for(const e in Re)bt[e]=ht(e,Re[e]);function vt(e){return{get(){const t=tr(this);return Ce(t,e),t.cmpFields[e]},set(t){const n=tr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,ve(n,e))},enumerable:!0,configurable:!0}}function Ct(e){return{get(){const t=tr(this);if(!Nn(t))return Ce(t,e),t.cmpProps[e]},set(t){const n=tr(this);n.cmpProps[e]=t,ve(n,e)},enumerable:!0,configurable:!0}}r(mt.prototype,bt),o(mt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class Et extends be{constructor(e,t){super((()=>{j(this.debouncing)&&(this.debouncing=!0,he((()=>{if(H(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,H(e.isDirty)&&j(r)&&i>0&&Yn(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function kt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new Error;return{get(){return n.call(this)},set(t){const n=tr(this);if(r)if(ce.ENABLE_REACTIVE_SETTER){let o=n.oar[e];D(o)&&(o=n.oar[e]=new Et(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function xt(e){return{get(){const t=tr(this);return Ce(t,e),t.cmpFields[e]},set(t){const n=tr(this),r=pt.getProxy(t);r!==n.cmpFields[e]&&(n.cmpFields[e]=r,ve(n,e))},enumerable:!0,configurable:!0}}function St(e){return{get(){const t=tr(this);return Ce(t,e),t.cmpFields[e]},set(t){const n=tr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,ve(n,e))},enumerable:!0,configurable:!0}}const Mt=new Map;const Tt={apiMethods:de,apiFields:de,apiFieldsConfig:de,wiredMethods:de,wiredFields:de,observedFields:de};const At=new Set;function Ot(){return[]}At.add(Ot);const Pt=n(null),$t=n(null);function Lt(e){let t=Pt[e];return D(t)&&(t=Pt[e]=function(){const t=tr(this),{getHook:n}=t;return n(t.component,e)}),t}function Nt(e){let t=$t[e];return D(t)&&(t=$t[e]=function(t){const n=tr(this),{setHook:r}=n;t=pt.getReadOnlyProxy(t),r(n.component,e,t)}),t}function Rt(e){return function(){const t=tr(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,T.call(arguments))}}function Ft(e,t){return function(n,r,o){if(r===o)return;const i=e[n];D(i)?D(t)||t.apply(this,arguments):$e(this,n)&&(this[i]=o)}}function _t(e,t,i){let s;B(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},p(s,e),p(s.prototype,e.prototype),o(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=n(null),{attributeChangedCallback:a}=e.prototype,{observedAttributes:c=[]}=e,u=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];l[ie(n)]=n,u[n]={get:Lt(n),set:Nt(n),enumerable:!0,configurable:!0}}for(let e=0,t=i.length;e<t;e+=1){const t=i[e];u[t]={value:Rt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:Ft(l,a)},o(s,"observedAttributes",{get:()=>[...c,...d(l)]}),r(s.prototype,u),s}const Dt=_t(Me,l(Re),[]);i(Dt),f(Dt.prototype);const It=new WeakMap;function Ht(e){const{shadowSupportMode:o,renderMode:i}=e,s=function(e){const t=Mt.get(e);return D(t)?Tt:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:f,wiredMethods:p,observedFields:h}=s,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}=m;const C=function(e){let t=a(e);if(I(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(Se(t)){const e=xe(t);t=e===t?mt:e}return t}(e),E=C!==mt?Bt(C):Wt,k=_t(E.bridge,d(l),d(u)),x=t(n(null),E.props,l),S=t(n(null),E.propsConfig,c),M=t(n(null),E.methods,u),T=t(n(null),E.wire,f,p);g=g||E.connectedCallback,w=w||E.disconnectedCallback,y=y||E.renderedCallback,b=b||E.errorCallback,v=v||E.render;let A=E.shadowSupportMode;D(o)||(A=o);let O=E.renderMode;D(i)||(O="light"===i?0:1);const P=function(e){return _n.get(e)}(e)||E.template,$=e.name||E.name;r(m,h);return{ctor:e,name:$,wire:T,props:x,propsConfig:S,methods:M,bridge:k,template:P,renderMode:O,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function jt(e){if(!B(e))return!1;if(e.prototype instanceof mt)return!0;let t=e;do{if(Se(t)){const e=xe(t);if(e===t)return!0;t=e}if(t===mt)return!0}while(!I(t)&&(t=a(t)));return!1}function Bt(e){let t=It.get(e);if(D(t)){if(Se(e)){return t=Bt(xe(e)),It.set(e,t),t}if(!jt(e))throw new TypeError(`${e} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);t=Ht(e),It.set(e,t)}return t}const Wt={ctor:mt,name:mt.name,props:bt,propsConfig:de,methods:de,renderMode:1,shadowSupportMode:"reset",wire:de,bridge:Dt,template:Ot,render:mt.prototype.render};function Vt(e){const{type:t}=e;return 2===t||3===t}function Gt(e,t){return e.key===t.key&&e.sel===t.sel}function Kt(e,t){return"input"===e&&("value"===t||"checked"===t)}const zt=n(null);function Ut(e){if(null==e)return de;e=W(e)?e:e+"";let t=zt[e];if(t)return t;t=n(null);let r,o=0;const i=e.length;for(r=0;r<i;r++)32===N.call(e,r)&&(r>o&&(t[F.call(e,o,r)]=!0),o=r+1);return r>o&&(t[F.call(e,o,r)]=!0),zt[e]=t,t}function qt(e,t,n,r){var o;o=t,cn.has(o)?function(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],a=e[s];const c=t.length-1;let u,d,f,p,h=c,m=t[0],g=t[h],w=!1;for(;o<=s&&i<=h;)en(l)?en(a)?en(m)?en(g)?Gt(l,m)?(Xt(l,m,r),l=e[++o],m=t[++i]):Gt(a,g)?(Xt(a,g,r),a=e[--s],g=t[--h]):Gt(l,g)?(Xt(l,g,r),sn(l.elm,n,r.nextSibling(a.elm),r),l=e[++o],g=t[--h]):Gt(a,m)?(Xt(a,m,r),sn(m.elm,n,l.elm,r),a=e[--s],m=t[++i]):(void 0===u&&(u=un(e,o,s)),d=u[m.key],D(d)?(Yt(m,n,r,l.elm),m=t[++i]):(f=e[d],en(f)&&(f.sel!==m.sel?Yt(m,n,r,l.elm):(Xt(f,m,r),w||(w=!0,e=[...e]),e[d]=void 0,sn(f.elm,n,l.elm,r))),m=t[++i])):g=t[--h]:m=t[++i]:a=e[--s]:l=e[++o];if(o<=s||i<=h)if(o>s){let e,o=h;do{e=t[++o]}while(!en(e)&&o<c);p=en(e)?e.elm:null,Jt(t,n,r,p,i,h+1)}else Zt(e,n,r,!0,o,s+1)}(e,t,n,r):function(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void Jt(t,n,r,null);if(0===i)return void Zt(e,n,r,!0);let s=null;for(let o=i-1;o>=0;o-=1){const i=e[o],l=t[o];l!==i&&(en(i)?en(l)?(Xt(i,l,r),s=l.elm):Qt(i,n,r,!0):en(l)&&(Yt(l,n,r,s),s=l.elm))}}(e,t,n,r)}function Xt(e,t,n){var r,o;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&on(t,n)}(e,t,n);break;case 4:t.elm=e.elm;break;case 2:!function(e,t,n){const r=t.elm=e.elm;ln(e,t,n),qt(e.children,t.children,r,n)}(e,t,null!==(r=t.data.renderer)&&void 0!==r?r:n);break;case 3:!function(e,t,n){const r=t.elm=e.elm,o=t.vm=e.vm;ln(e,t,n),D(o)||an(t,o);qt(e.children,t.children,r,n),D(o)||Yn(o)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}}function Yt(e,t,n,r){var o,i;switch(e.type){case 0:!function(e,t,n,r){const{owner:o}=e,{createText:i}=r,s=e.elm=i(e.text);rn(s,o,r),sn(s,t,n,r)}(e,t,r,n);break;case 1:!function(e,t,n,r){const{owner:o}=e,{createComment:i}=r,s=e.elm=i(e.text);rn(s,o,r),sn(s,t,n,r)}(e,t,r,n);break;case 4:!function(e,t,n,r){const{owner:o}=e,{cloneNode:i,isSyntheticShadowDefined:s}=r,l=e.elm=i(e.fragment,!0);rn(l,o,r);const{renderMode:a,shadowMode:c}=o;s&&(1!==c&&0!==a||(l.$shadowStaticNode$=!0));sn(l,t,n,r)}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,a=H(s)?"http://www.w3.org/2000/svg":void 0,c=l(o,a);rn(c,i,r),function(e,t,n){const{owner:r}=t;if(nn(e,r,n),1===r.shadowMode){const{data:{context:n}}=t,{stylesheetToken:o}=r.context;D(n)||D(n.lwc)||"manual"!==n.lwc.dom||function(e){e.$domManual$=!0}(e),D(o)||tn(e,o)}}(c,e,r),e.elm=c,ln(null,e,r),sn(c,t,n,r),Jt(e.children,c,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:!function(e,t,n,r){const{sel:o,owner:i}=e,s=function(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return D(i)?(i=class extends r{constructor(e){super(),B(e)&&e(this)}},o(e,i),i):i}(o,r);let l;const a=new s((t=>{l=function(e,t,n){let r=nr(e);if(!D(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;if(nn(e,l,n),1===l.shadowMode){const{stylesheetToken:t}=l.context;D(t)||tn(e,t)}return r=Zn(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(rn(a,i,r),e.elm=a,e.vm=l,l)an(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");ln(null,e,r),sn(a,t,n,r),l&&sr(l);Jt(e.children,a,r,null),l&&function(e){rr(e)}(l)}(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function Jt(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];en(i)&&Yt(i,t,n,r)}}function Qt(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&function(e,t,n){n.remove(e,t)}(i,t,n),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;Zt(e.children,i,n,t);break}case 3:{const{vm:t}=e;D(t)||function(e){Qn(e)}(t)}}}function Zt(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];en(i)&&Qt(i,t,n,r)}}function en(e){return null!=e}function tn(e,t){e.$shadowToken$=t}function nn(e,t,n){const{cmpTemplate:r,context:o}=t,{getClassList:i}=n,s=null==r?void 0:r.stylesheetToken;!D(s)&&o.hasScopedStyles&&i(e).add(s)}function rn(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function on(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function sn(e,t,n,r){r.insert(e,t,n)}function ln(e,t,n){I(e)&&(function(e,t){const{elm:n,data:{on:r}}=e;if(D(r))return;const{addEventListener:o}=t;for(const e in r)o(n,e,r[e])}(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(D(r))return;const{getClassList:o}=t,i=o(n);for(const e in r)i.add(e)}(t,n),function(e,t){const{elm:n,data:{styleDecls:r}}=e;if(D(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=I(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),a=Ut(o),c=Ut(i);let u;for(u in c)D(a[u])&&l.remove(u);for(u in a)D(c[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((I(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;W(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(D(r))return;const o=I(e)?de:e.data.attrs;if(o===r)return;const{elm:i}=t,{setAttribute:s,removeAttribute:l}=n;for(const e in r){const t=r[e];o[e]!==t&&(Ne(i,e),58===N.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===N.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):I(t)||D(t)?l(i,e):s(i,e,t),Le())}}(e,t,n),function(e,t,n){const{props:r}=t.data;if(D(r))return;const o=I(e)?de:e.data.props;if(o===r)return;const i=I(e),{elm:s,sel:l}=t,{getProperty:a,setProperty:c}=n;for(const e in r){const t=r[e];(i||t!==(Kt(l,e)?a(s,e):o[e]))&&c(s,e,t)}}(e,t,n)}function an(e,t){const r=e.aChildren||e.children;t.aChildren=r;const{renderMode:o,shadowMode:i}=t;1!==i&&0!==o||(!function(e,t){var r;const{cmpSlots:o}=e,i=e.cmpSlots=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];if(I(n))continue;let o="";Vt(n)&&(o=(null===(r=n.data.attrs)||void 0===r?void 0:r.slot)||"");const s=i[o]=i[o]||[];k.call(s,n)}if(j(e.isDirty)){const t=d(o);if(t.length!==d(i).length)return void Hn(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(D(i[r])||o[r].length!==i[r].length)return void Hn(e);const s=o[r],l=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(s[t]!==l[t])return void Hn(e)}}}(t,r),e.aChildren=r,e.children=fe)}const cn=new WeakMap;function un(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(en(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}const dn=Symbol.iterator;function fn(e,t,n=fe){const r=Tn();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,owner:r}}function pn(e,t,n,r=fe){const o=Tn(),{key:i}=n;const s={type:3,sel:e,data:n,children:r,elm:undefined,key:i,ctor:t,owner:o,mode:"open",aChildren:undefined,vm:undefined};return function(e){k.call(Tn().velements,e)}(s),s}const hn=new Map;let mn=0;function gn(e){var t;return t=e,cn.set(t,1),e}let wn=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const yn=i({s:function(e,t,n,r){D(r)||D(r[e])||0===r[e].length||(n=r[e]);const o=Tn(),{renderMode:i,shadowMode:s}=o;return 0===i?(gn(n),n):(1===s&&gn(n),fn("slot",t,n))},h:fn,c:pn,i:function(e,t){const n=[];if(gn(n),D(e)||null===e)return n;const r=e[dn]();let o=r.next(),i=0,{value:s,done:l}=o;for(;!1===l;){o=r.next(),l=o.done;const e=t(s,i,0===i,!0===l);h(e)?k.apply(n,e):k.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];gn(n);for(let r=0;r<t;r+=1){const t=e[r];h(t)?k.apply(n,t):k.call(n,t)}return n},t:function(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:Tn()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=Tn();if(I(t))throw new Error;const n=t;return function(t){Fn(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:undefined,owner:Tn()}},dc:function(e,t,n,r=fe){if(null==t)return null;if(!jt(t))throw new Error(`Invalid LWC Constructor ${K(t)} for custom element <${e}>.`);let o=hn.get(t);return D(o)&&(o=mn++,hn.set(t,o)),pn(e,t,Object.assign(Object.assign({},n),{key:`dc:${o}:${n.key}`}),r)},ti:function(e){return e>0&&!(H(e)||j(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:Tn()}},gid:function(e){const t=Tn();if(D(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?R.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=Tn();if(D(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return wn(e)}});function bn(e){return`${e}-host`}function vn(e){return yn.h("style",{key:"style",attrs:{type:"text/css"}},[yn.t(e)])}function Cn(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(h(s))k.apply(r,Cn(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let a;1===n.renderMode?a=0===n.shadowMode:(D(o)&&(o=kn(n)),a=I(o)||0===o.shadowMode),k.call(r,s(i,l,a))}}return r}function En(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return D(n)||0===n.length||(o=Cn(n,r,e)),o}function kn(e){let t=e;for(;!I(t);){if(1===t.renderMode)return t;t=t.owner}return t}function xn(e,t){const{renderMode:n,shadowMode:r,renderer:{ssr:o,insertStylesheet:i}}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)i(t[e]);else{if(o||e.hydrated)return C.call(t,vn);{const n=function(e){const t=kn(e);return I(t)||1!==t.shadowMode?t:null}(e),r=I(n)?void 0:n.shadowRoot;for(let e=0;e<t.length;e++)i(t[e],r)}}return null}let Sn=!1,Mn=null;function Tn(){return Mn}function An(e){Mn=e}const On=(Pn=(e,t)=>{const{createFragment:n}=t;return n(e)},(e,...t)=>{const r=n(null);return function(){const{context:{hasScopedStyles:n,stylesheetToken:o},shadowMode:i,renderer:s}=Tn(),l=!D(o),a=1===i;let c=0;if(l&&n&&(c|=1),l&&a&&(c|=2),!D(r[c]))return r[c];const u=n&&l?" "+o:"",d=n&&l?` class="${o}"`:"",f=l&&a?" "+o:"";let p="";for(let n=0,r=t.length;n<r;n++)switch(t[n]){case 0:p+=e[n]+u;break;case 1:p+=e[n]+d;break;case 2:p+=e[n]+f;break;case 3:p+=e[n]+d+f}return p+=e[e.length-1],r[c]=Pn(p,s),r[c]}});var Pn;function $n(e,t){const r=Sn,o=Mn;let i=[];return dr(e,e.owner,(()=>{Mn=e}),(()=>{const{component:r,context:o,cmpSlots:s,cmpTemplate:l,tro:a}=e;a.observe((()=>{if(t!==l){if(I(l)||ur(e),a=t,!At.has(a))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${K(t)}.`);e.cmpTemplate=t,o.tplCache=n(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!D(t))for(let e=0;e<t.length;e++)if(H(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:a}}=e,{stylesheets:c,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let p,h,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:y}=r;D(g)||(w&&s(n).remove(bn(g)),y&&l(n,bn(g))),D(c)||0===c.length||(p=u),D(p)||(f&&(s(n).add(bn(p)),h=!0),d&&(a(n,bn(p),""),m=!0)),r.stylesheetToken=p,r.hasTokenInClass=h,r.hasTokenInAttribute=m}(e,t);const r=En(e,t);o.styleVNodes=0===r.length?null:xn(e,r)}var a;e.velements=[],Sn=!0,i=t.call(void 0,yn,r,s,o.tplCache);const{styleVNodes:c}=o;I(c)||P.apply(i,c)}))}),(()=>{Sn=r,Mn=o})),i}let Ln=null;function Nn(e){return Ln===e}function Rn(e,t,n){const{component:r,callHook:o,owner:i}=e;dr(e,i,V,(()=>{o(r,t,n)}),V)}function Fn(e,t,n,r){const{callHook:o,owner:i}=e;dr(e,i,V,(()=>{o(n,t,[r])}),V)}const _n=new Map;function Dn(e){return new be((()=>{const{isDirty:t}=e;j(t)&&(Hn(e),function(e){const{renderer:{ssr:t}}=e;if(H(t)||H(e.isScheduled))return;e.isScheduled=!0,0===or.length&&he(ir);k.call(or,e)}(e))}))}function In(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=Tn();let s,l=!1;return dr(e,o,(()=>{An(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{An(i)})),l?$n(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function Hn(e){e.isDirty=!0}const jn=new WeakMap;function Bn(e,t){if(!B(t))throw new TypeError;let n=jn.get(t);return D(n)&&(n=function(n){Fn(e,t,void 0,n)},jn.set(t,n)),n}const Wn=n(null),Vn=["rendered","connected","disconnected"];function Gn(e,t){const{component:n,def:r,context:o}=e;for(let e=0,i=t.length;e<i;++e)t[e].call(void 0,n,{},r,o)}let Kn=0;const zn=new WeakMap;function Un(e,t,n=[]){return t.apply(e,n)}function qn(e,t,n){e[t]=n}function Xn(e,t){return e[t]}function Yn(e){rr(e)}function Jn(e){const t=tr(e);1===t.state&&function(e){Qn(tr(e))}(e),sr(t),rr(t)}function Qn(e){const{state:t}=e;if(2!==t){const{oar:t,tro:n}=e;n.reset();for(const e in t)t[e].reset();!function(e){j(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=Wn;t&&Gn(e,t);lr(e)&&function(e){const{wiredDisconnecting:t}=e.context;dr(e,e,V,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),V)}(e);const{disconnectedCallback:n}=e.def;D(n)||Rn(e,n)}(e),ar(e),function(e){const{aChildren:t}=e;cr(t)}(e)}}function Zn(e,t,r,o){const{mode:i,owner:s,tagName:l,hydrated:a}=o,c=Bt(t),u={elm:e,def:c,idx:Kn++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,children:fe,aChildren:fe,velements:fe,cmpProps:n(null),cmpFields:n(null),cmpSlots:n(null),oar:n(null),cmpTemplate:null,hydrated:Boolean(a),renderMode:c.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:de,wiredConnecting:fe,wiredDisconnecting:fe},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:Un,setHook:qn,getHook:Xn,renderer:r};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ce.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!I(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=I(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,r),u.tro=Dn(u),function(e,t){const n=Ln;let r;Ln=e;try{const o=new t;if(Ln.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(Ln=n,!D(r))throw ke(e,r),r}}(u,c.ctor),lr(u)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],s=fr.get(i);if(!D(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=hr(e,t,s),a=s.dynamic.length>0;k.call(r,(()=>{n.connect(),ce.ENABLE_WIRE_SYNC_EMIT||!a?i():Promise.resolve().then(i)})),k.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function er(e,t){zn.set(e,t)}function tr(e){return zn.get(e)}function nr(e){return zn.get(e)}function rr(e){if(H(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&dr(e,e,(()=>{}),(()=>{qt(r,t,n,o)}),(()=>{}));1===e.state&&function(e){const{def:{renderedCallback:t},renderer:{ssr:n}}=e;if(H(n))return;const{rendered:r}=Wn;r&&Gn(e,r);D(t)||Rn(e,t)}(e)}(e,In(e))}}let or=[];function ir(){const e=or.sort(((e,t)=>e.idx-t.idx));or=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{rr(r)}catch(r){throw t+1<n&&(0===or.length&&he(ir),P.apply(or,T.call(e,t+1))),r}}}function sr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=Wn;n&&Gn(e,n),lr(e)&&function(e){const{wiredConnecting:t}=e.context;for(let e=0,n=t.length;e<n;e+=1)t[e]()}(e);const{connectedCallback:r}=e.def;D(r)||Rn(e,r)}function lr(e){return l(e.def.wire).length>0}function ar(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!D(n)){const e=nr(n);D(e)||Qn(e)}}}function cr(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!I(n)&&!D(n.elm))switch(n.type){case 2:cr(n.children);break;case 3:Qn(tr(n.elm));break}}}function ur(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];I(o)||D(o.elm)||r(o.elm,n)}e.children=fe,ar(e),e.velements=fe}function dr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!D(i)){ke(e,i);const n=I(t)?void 0:function(e){let t=e;for(;!I(t);){if(!D(t.def.errorCallback))return t;t=t.owner}}(t);if(D(n))throw i;ur(e);Rn(n,n.def.errorCallback,[i,i.wcStack])}}}const fr=new Map;class pr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),r(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function hr(e,t,n){const{method:r,adapter:i,configCallback:s,dynamic:l}=n,a=D(r)?function(e,t){const{cmpFields:n}=e;return r=>{r!==e.cmpFields[t]&&(n[t]=r,ve(e,t))}}(e,t):function(e,t){return n=>{dr(e,e.owner,V,(()=>{t.call(e.component,n)}),V)}}(e,r);let c,u;o(a,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),o(a,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),dr(e,e,V,(()=>{u=new i(a)}),V);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=new be((()=>{!1===r&&(r=!0,Promise.resolve().then((()=>{r=!1,o.reset(),i()})))})),i=()=>{let r;o.observe((()=>r=t(e))),n(r)};return{computeConfigAndUpdate:i,ro:o}}(e.component,s,(t=>{dr(e,e,V,(()=>{u.update(t,c)}),V)}));return D(i.contextSchema)||function(e,t,n){const{adapter:r}=t,o=gr(r);if(D(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:a}}=e;k.call(s,(()=>{const e=new pr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){k.call(l,e)}});a(i,e)}))}(e,n,(t=>{c!==t&&(c=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const mr=new Map;function gr(e){return mr.get(e)}function wr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};fr.set(e,o)}function yr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};fr.set(e,o)}let br=!1;var vr;!function(e){e.Text="text",e.Comment="comment",e.Raw="raw",e.Element="element",e.ShadowRoot="shadow-root"}(vr||(vr={}));const Cr=/\s+/g;function Er(e){return new Set(e.split(Cr).filter((e=>e.length)))}function kr(e){return Array.from(e).join(" ")}function xr(e){return function(){throw new TypeError(`"${e}" is not supported in this environment`)}}function Sr(e){return{type:vr.Element,name:e,parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}}}const Mr=n(null),Tr=new WeakMap;function Ar(e,t,n=null){const r=e.attributes.find((e=>e.name===t&&e.namespace===n));return r?r.value:null}function Or(e,t,n,r=null){const o=e.attributes.find((e=>e.name===t&&e.namespace===r));D(r)&&(r=null),D(o)?e.attributes.push({name:t,namespace:r,value:String(n)}):o.value=n}function Pr(e,t,n){e.attributes=e.attributes.filter((e=>e.name!==t&&e.namespace!==n))}const $r=V,Lr=V,Nr=V,Rr=xr("dispatchEvent"),Fr=xr("getBoundingClientRect"),_r=xr("querySelector"),Dr=xr("querySelectorAll"),Ir=xr("getElementsByTagName"),Hr=xr("getElementsByClassName"),jr=xr("getChildren"),Br=xr("getChildNodes"),Wr=xr("getFirstChild"),Vr=xr("getFirstElementChild"),Gr=xr("getLastChild"),Kr=xr("getLastElementChild");const zr={ssr:!0,isNativeShadowDefined:!1,isSyntheticShadowDefined:!1,HTMLElementExported:class{constructor(){const{constructor:e}=this,t=Tr.get(e);if(!t)throw new TypeError("Invalid Construction");return Sr(t)}},isHydrating:function(){return!1},insert:function(e,t,n){if(null!==e.parent&&e.parent!==t){const t=e.parent.children.indexOf(e);e.parent.children.splice(t,1)}e.parent=t;const r=I(n)?-1:t.children.indexOf(n);-1===r?t.children.push(e):t.children.splice(r,0,e)},remove:function(e,t){const n=t.children.indexOf(e);t.children.splice(n,1)},cloneNode:function(e){return e},createFragment:function(e){return{type:vr.Raw,parent:null,value:e}},createElement:Sr,createText:function(e){return{type:vr.Text,value:String(e),parent:null}},createComment:function(e){return{type:vr.Comment,value:e,parent:null}},nextSibling:function(e){const{parent:t}=e;if(I(t))return null;const n=t.children.indexOf(e);return t.children[n+1]||null},attachShadow:function(e,t){return e.shadowRoot={type:vr.ShadowRoot,children:[],mode:t.mode,delegatesFocus:!!t.delegatesFocus},e.shadowRoot},getProperty:function(e,t){var n,r;if(t in e)return e[t];if(e.type===vr.Element){const o=ie(t);if(ee(o,e.name))return null!==(n=Ar(e,o))&&void 0!==n&&n;if(ne(o)||Y(o))return Ar(e,o);if("input"===e.name&&"value"===t)return null!==(r=Ar(e,"value"))&&void 0!==r?r:""}},setProperty:function(e,t,n){if(t in e)return e[t]=n;if(e.type===vr.Element){const r=ie(t);if("innerHTML"===t)return void(e.children=[{type:vr.Raw,parent:e,value:n}]);if(ee(r,e.name))return!0===n?Or(e,r,""):Pr(e,r);if(ne(r)||Y(r))return Or(e,r,n);if("input"===e.name&&"value"===r)return I(n)||D(n)?Pr(e,"value"):Or(e,"value",n)}},setText:function(e,t){e.type===vr.Text?e.value=t:e.type===vr.Element&&(e.children=[{type:vr.Text,parent:e,value:t}])},getAttribute:Ar,setAttribute:Or,removeAttribute:Pr,addEventListener:Lr,removeEventListener:Nr,dispatchEvent:Rr,getClassList:function(e){function t(){let t=e.attributes.find((e=>"class"===e.name&&I(e.namespace)));return D(t)&&(t={name:"class",namespace:null,value:""},e.attributes.push(t)),t}return{add(...e){const n=t(),r=Er(n.value);e.forEach((e=>r.add(e))),n.value=kr(r)},remove(...e){const n=t(),r=Er(n.value);e.forEach((e=>r.delete(e))),n.value=kr(r)}}},setCSSStyleProperty:function(e,t,n,r){const o=e.attributes.find((e=>"style"===e.name&&I(e.namespace))),i=`${t}: ${n}${r?" !important":""}`;D(o)?e.attributes.push({name:"style",namespace:null,value:i}):o.value+=`; ${i}`},getBoundingClientRect:Fr,querySelector:_r,querySelectorAll:Dr,getElementsByTagName:Ir,getElementsByClassName:Hr,getChildren:jr,getChildNodes:Br,getFirstChild:Wr,getFirstElementChild:Vr,getLastChild:Gr,getLastElementChild:Kr,isConnected:function(e){return!I(e.parent)},insertStylesheet:$r,assertInstanceOfHTMLElement:V,defineCustomElement:function(e,t,n){!function(e,t){if(e!==_.call(e)||Mr[e])throw new TypeError("Invalid Registration");Mr[e]=t,Tr.set(t,e)}(e,t)},getCustomElement:function(e){return Mr[e]}};function Ur(e){return e.map((e=>{switch(e.type){case vr.Text:return""===e.value?"":le(e.value);case vr.Comment:return`\x3c!--${le(e.value)}--\x3e`;case vr.Raw:return e.value;case vr.Element:return qr(e)}})).join("")}function qr(e){let t="";const{name:n}=e,r=e.attributes.length?` ${o=e.attributes,o.map((e=>e.value.length?`${e.name}=${JSON.stringify(le(e.value))}`:e.name)).join(" ")}`:"";var o;const i=Ur(e.children);return t+=`<${n}${r}>`,e.shadowRoot&&(t+=function(e){const t=[`shadowroot="${e.mode}"`];return e.delegatesFocus&&t.push("shadowrootdelegatesfocus"),`<template ${t.join(" ")}>${Ur(e.children)}</template>`}(e.shadowRoot)),t+=i,function(e){return Q.has(e)}(n)||(t+=`</${n}>`),t}const Xr={type:vr.Element,name:"fake-root-element",parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}};i(mt),f(mt.prototype),exports.LightningElement=mt,exports.api=function(){throw new Error},exports.createContextProvider=function(e){let t=gr(e);if(!D(t))throw new Error("Adapter already has a context provider.");t=function(){function e(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}return e()+e()+"-"+e()+"-"+e()+"-"+e()+"-"+e()+e()+e()}(),function(e,t){mr.set(e,t)}(e,t);const n=new WeakSet;return(e,r)=>{if(n.has(e))throw new Error(`Adapter was already installed on ${e}.`);n.add(e);const{consumerConnectedCallback:o,consumerDisconnectedCallback:i}=r;e.addEventListener(t,(e=>{const{setNewContext:t,setDisconnectedCallback:n}=e,r={provide(e){t(e)}};n((()=>{D(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},exports.freezeTemplate=function(e){},exports.getComponentDef=function(e){const t=Bt(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:ie(e)};const a={};for(const e in s)a[e]=s[e].value;return{ctor:n,name:r,props:l,methods:a}},exports.isComponentConstructor=jt,exports.parseFragment=On,exports.parseSVGFragment=On,exports.readonly=function(e){return pt.getReadOnlyProxy(e)},exports.register=function(e){for(let t=0;t<Vn.length;++t){const n=Vn[t];if(n in e){let t=Wn[n];D(t)&&(Wn[n]=t=[]),k.call(t,e[n])}}},exports.registerComponent=function(e,{tmpl:t}){return B(e)&&_n.set(e,t),e},exports.registerDecorators=function(e,t){const r=e.prototype,{publicProps:i,publicMethods:l,wire:a,track:c,fields:u}=t,d=n(null),f=n(null),p=n(null),h=n(null),m=n(null),g=n(null);let w;if(!D(i))for(const e in i){const t=i[e];if(g[e]=t.config,w=s(r,e),t.config>0){if(D(w))throw new Error;w=kt(e,w)}else w=D(w)||D(w.get)?Ct(e):kt(e,w);f[e]=w,o(r,e,w)}if(D(l)||$.call(l,(e=>{if(w=s(r,e),D(w))throw new Error;d[e]=w})),!D(a))for(const e in a){const{adapter:t,method:n,config:i,dynamic:l=[]}=a[e];if(w=s(r,e),1===n){if(D(w))throw new Error;p[e]=w,wr(w,t,i,l)}else w=St(e),h[e]=w,yr(w,t,i,l),o(r,e,w)}if(!D(c))for(const e in c)w=s(r,e),w=xt(e),o(r,e,w);if(!D(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=s(r,t);const n=!D(i)&&t in i,o=!D(c)&&t in c;n||o||(m[t]=vt(t))}return function(e,t){Mt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:p,wiredFields:h,observedFields:m}),e},exports.registerTemplate=function(e){return At.add(e),o(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return D(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=D(e)?void 0:e.shadowAttribute}}),e},exports.renderComponent=function(e,t,n={}){if(!W(e))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${e}.`);if(!B(t))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if("object"!=typeof n||I(n))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${n}.`);const r=zr.createElement(e);Zn(r,t,zr,{mode:"open",owner:null,tagName:e});for(const[e,t]of Object.entries(n))r[e]=t;return r.parent=Xr,Jn(r),qr(r)},exports.renderer=zr,exports.sanitizeAttribute=function(e,t,n,r){return r},exports.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(D(ae[e])){const n=d(ae).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ce[e];if(!D(n))return void console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);o(ce,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},exports.setFeatureFlagForTest=function(e,t){},exports.setHooks=function(t){var n;e.isFalse(br,"Hooks are already overridden, only one definition is allowed."),br=!0,n=t.sanitizeHtmlContent,wn=n},exports.track=function(e){if(1===arguments.length)return pt.getProxy(e);throw new Error},exports.unwrap=function(e){return pt.unwrapProxy(e)},exports.wire=function(e,t){throw new Error};
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});const{assign:t,create:n,defineProperties:r,defineProperty:o,freeze:i,getOwnPropertyDescriptor:s,getOwnPropertyNames:l,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:d,seal:f,setPrototypeOf:p}=Object,{isArray:h}=Array,{copyWithin:m,fill:g,filter:w,find:y,indexOf:b,join:v,map:C,pop:E,push:k,reduce:x,reverse:S,shift:M,slice:T,sort:A,splice:O,unshift:P,forEach:$}=Array.prototype,{fromCharCode:L}=String,{charCodeAt:N,replace:R,slice:_,toLowerCase:D}=String.prototype;function F(e){return void 0===e}function I(e){return null===e}function H(e){return!0===e}function j(e){return!1===e}function B(e){return"function"==typeof e}function W(e){return"string"==typeof e}function V(){}const K={}.toString;function z(e){return e&&e.toString?h(e)?v.call(C.call(e,z),","):e.toString():"object"==typeof e?K.call(e):e+""}function G(e,t){do{const n=s(e,t);if(!F(n))return n;e=a(e)}while(null!==e)}const U=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:q,AriaPropNameToAttrNameMap:X}=(()=>{const e=n(null),t=n(null);return $.call(U,(n=>{const r=D.call(R.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})();function Y(e){return e in q}const J=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),Q="http://www.w3.org/1999/xhtml",Z=new Set(["area","base","br","col","embed","hr","img","input","link","meta","source","track","wbr"]);const ee=new Map([["autofocus",new Set(["button","input","keygen","select","textarea"])],["autoplay",new Set(["audio","video"])],["checked",new Set(["command","input"])],["disabled",new Set(["button","command","fieldset","input","keygen","optgroup","select","textarea"])],["formnovalidate",new Set(["button"])],["hidden",new Set],["loop",new Set(["audio","bgsound","marquee","video"])],["multiple",new Set(["input","select"])],["muted",new Set(["audio","video"])],["novalidate",new Set(["form"])],["open",new Set(["details"])],["readonly",new Set(["input","textarea"])],["required",new Set(["input","select","textarea"])],["reversed",new Set(["ol"])],["selected",new Set(["option"])]]);function te(e,t){const n=ee.get(e);return void 0!==n&&(0===n.size||n.has(t))}const ne=new Set(["role","accesskey","class","contenteditable","contextmenu","dir","draggable","dropzone","hidden","id","itemprop","lang","slot","spellcheck","style","tabindex","title"]);function re(e){return ne.has(e)}const oe=new Map([["accessKey","accesskey"],["readOnly","readonly"],["tabIndex","tabindex"],["bgColor","bgcolor"],["colSpan","colspan"],["rowSpan","rowspan"],["contentEditable","contenteditable"],["crossOrigin","crossorigin"],["dateTime","datetime"],["formAction","formaction"],["isMap","ismap"],["maxLength","maxlength"],["minLength","minlength"],["noValidate","novalidate"],["useMap","usemap"],["htmlFor","for"]]),ie=new Map;function se(e){const t=X[e];if(!F(t))return t;const n=oe.get(e);if(!F(n))return n;const r=ie.get(e);if(!F(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=N.call(e,t);o+=n>=65&&n<=90?"-"+L(n+32):L(n)}return ie.set(e,o),o}const le={'"':""","'":"'","<":"<",">":">","&":"&"};function ae(e,t=!1){const n=t?/["&]/g:/["'<>&]/g;return e.replace(n,(e=>le[e]))}if("function"!=typeof Event){class e{}o(J,"Event",{value:e,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class e extends Event{}o(J,"CustomEvent",{value:e,configurable:!0,writable:!0})}const ce={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HMR:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null};J.lwcRuntimeFlags||Object.defineProperty(J,"lwcRuntimeFlags",{value:n(null)});const ue=J.lwcRuntimeFlags;let de=[];const fe=f(n(null)),pe=f([]);function he(){const e=de;de=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function me(e){0===de.length&&Promise.resolve().then(he),k.call(de,e)}const ge=new WeakMap;let we=null;function ye(e,t){const n=ge.get(e);if(!F(n)){const e=n[t];if(!F(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function be(e,t){if(null===we)return;const r=we,o=function(e){let t=ge.get(e);if(F(t)){const r=n(null);t=r,ge.set(e,r)}return t}(e);let i=o[t];if(F(i))i=[],o[t]=i;else if(i[0]===r)return;-1===b.call(i,r)&&r.link(i)}class ve{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=we;let n;we=this;try{e()}catch(e){n=Object(e)}finally{if(we=t,void 0!==n)throw n}}reset(){const{listeners:e}=this,t=e.length;if(t>0){for(let n=0;n<t;n+=1){const t=e[n],r=b.call(e[n],this);O.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){k.call(e,this),k.call(this.listeners,e)}}function Ce(e,t){ye(e.component,t)}function Ee(e,t){be(e.component,t)}function ke(e){return`<${D.call(e.tagName)}>`}function xe(e,t){if(!u(t)&&F(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!I(n);)k.call(t,ke(n)),n=n.owner;return t.reverse().join("\n\t")}(e);o(t,"wcStack",{get:()=>n})}}function Se(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Me(e){return B(e)&&c.call(e,"__circular__")}const Te="undefined"!=typeof HTMLElement?HTMLElement:function(){},Ae=Te.prototype;function Oe(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}t(n(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:Oe("offsetHeight")},offsetLeft:{readOnly:!0,error:Oe("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Oe("offsetTop")},offsetWidth:{readOnly:!0,error:Oe("offsetWidth")},role:{attribute:"role"}});let Pe,$e=null;function Le(e,t){return e!==$e||t!==Pe}function Ne(e,t){$e=null,Pe=void 0}function Re(e,t){$e=e,Pe=t}const _e=n(null);$.call(d(X),(e=>{const t=G(Ae,e);F(t)||(_e[e]=t)})),$.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=G(Ae,e);F(t)||(_e[e]=t)}));const{isArray:De}=Array,{prototype:Fe,getPrototypeOf:Ie,create:He,defineProperty:je,isExtensible:Be,getOwnPropertyDescriptor:We,getOwnPropertyNames:Ve,getOwnPropertySymbols:Ke,preventExtensions:ze,hasOwnProperty:Ge}=Object,{push:Ue,concat:qe}=Array.prototype;function Xe(e){return void 0===e}function Ye(e){return"function"==typeof e}const Je=new WeakMap;function Qe(e,t){Je.set(e,t)}const Ze=e=>Je.get(e)||e;class et{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(Ge.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;Xe(n)||(e.get=this.wrapGetter(n)),Xe(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=We(n,t);if(!Xe(r)){const n=this.wrapDescriptor(r);je(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;qe.call(Ve(t),Ke(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;Xe(n)||Ge.call(e,n)||je(e,n,He(null)),ze(e)}apply(e,t,n){}construct(e,t,n){}get(e,t){const{originalTarget:n,membrane:{valueObserved:r}}=this,o=n[t];return r(n,t),this.wrapValue(o)}has(e,t){const{originalTarget:n,membrane:{tagPropertyKey:r,valueObserved:o}}=this;return o(n,t),t in n||t===r}ownKeys(e){const{originalTarget:t,membrane:{tagPropertyKey:n}}=this,r=Xe(n)||Ge.call(t,n)?[]:[n];return Ue.apply(r,Ve(t)),Ue.apply(r,Ke(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!Be(e)&&(!!Be(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return Ie(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=We(n,t);if(Xe(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},je(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const tt=new WeakMap,nt=new WeakMap,rt=new WeakMap,ot=new WeakMap;class it extends et{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=tt.get(e);if(!Xe(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ze(this)))};return tt.set(e,r),rt.set(r,e),r}wrapSetter(e){const t=nt.get(e);if(!Xe(t))return t;const n=function(t){e.call(Ze(this),Ze(t))};return nt.set(e,n),ot.set(n,e),n}unwrapDescriptor(e){if(Ge.call(e,"value"))e.value=Ze(e.value);else{const{set:t,get:n}=e;Xe(n)||(e.get=this.unwrapGetter(n)),Xe(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=rt.get(e);if(!Xe(t))return t;const n=this,r=function(){return Ze(e.call(n.wrapValue(this)))};return tt.set(r,e),rt.set(e,r),r}unwrapSetter(e){const t=ot.get(e);if(!Xe(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return nt.set(r,e),ot.set(e,r),r}set(e,t,n){const{originalTarget:r,membrane:{valueMutated:o}}=this;return r[t]!==n?(r[t]=n,o(r,t)):"length"===t&&De(r)&&o(r,t),!0}deleteProperty(e,t){const{originalTarget:n,membrane:{valueMutated:r}}=this;return delete n[t],r(n,t),!0}setPrototypeOf(e,t){}preventExtensions(e){if(Be(e)){const{originalTarget:t}=this;if(ze(t),Be(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!Ge.call(r,t)||(je(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const st=new WeakMap,lt=new WeakMap;class at extends et{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=st.get(e);if(!Xe(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ze(this)))};return st.set(e,r),r}wrapSetter(e){const t=lt.get(e);if(!Xe(t))return t;const n=function(e){};return lt.set(e,n),n}set(e,t,n){return!1}deleteProperty(e,t){return!1}setPrototypeOf(e,t){}preventExtensions(e){return!1}defineProperty(e,t,n){return!1}}function ct(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(De(e))return!0;const t=Ie(e);return t===Fe||null===t||null===Ie(t)}const ut=(e,t)=>{},dt=(e,t)=>{};function ft(e){return De(e)?[]:{}}const pt=Symbol.for("@@lockerLiveValue"),ht=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=Ye(t)?t:dt,this.valueObserved=Ye(n)?n:ut,this.valueIsObservable=Ye(r)?r:ct,this.tagPropertyKey=o}getProxy(e){const t=Ze(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=Ze(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return Ze(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(Xe(t)){const n=new it(this,e);t=new Proxy(ft(e),n),Qe(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(Xe(t)){const n=new at(this,e);t=new Proxy(ft(e),n),Qe(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:be,valueMutated:ye,tagPropertyKey:pt});function mt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new TypeError;if(!B(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=nr(this);if(!Rn(t))return Ee(t,e),n.call(t.elm)},set(t){const n=nr(this);return t!==n.cmpProps[e]&&(n.cmpProps[e]=t,Ce(n,e)),r.call(n.elm,t)}}}const gt=function(){if(I(Nn))throw new ReferenceError("Illegal constructor");const e=Nn,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(p(n,r.prototype),e.component=this,1===arguments.length){const{callHook:t,setHook:n,getHook:r}=arguments[0];e.callHook=t,e.setHook=n,e.getHook=r}return this[pt]=void 0,tr(o,e),tr(n,e),1===e.renderMode?e.renderRoot=wt(e):e.renderRoot=n,this};function wt(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o},renderer:{attachShadow:i}}=e,s=i(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=s,tr(s,e),s}gt.prototype={constructor:gt,dispatchEvent(e){const t=nr(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=nr(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,Wn(r,t),n)},removeEventListener(e,t,n){const r=nr(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,Wn(r,t),n)},hasAttribute(e){const t=nr(this),{elm:n,renderer:{getAttribute:r}}=t;return!I(r(n,e))},hasAttributeNS(e,t){const n=nr(this),{elm:r,renderer:{getAttribute:o}}=n;return!I(o(r,t,e))},removeAttribute(e){const t=nr(this),{elm:n,renderer:{removeAttribute:r}}=t;Re(n,e),r(n,e),Ne()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=nr(this);Re(n,t),r(n,t,e),Ne()},getAttribute(e){const t=nr(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=nr(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=nr(this),{elm:r,renderer:{setAttribute:o}}=n;Re(r,e),o(r,e,t),Ne()},setAttributeNS(e,t,n){const r=nr(this),{elm:o,renderer:{setAttribute:i}}=r;Re(o,t),i(o,t,n,e),Ne()},getBoundingClientRect(){const e=nr(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=nr(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=nr(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return nr(this).shadowRoot},get shadowRoot(){return null},get children(){const e=nr(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=nr(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=nr(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=nr(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=nr(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=nr(this);return e.renderer.getLastElementChild(e.elm)},render(){return nr(this).def.template},toString(){return`[object ${nr(this).def.name}]`}};const yt=n(null),bt=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of bt)yt[e]={value(t){const n=nr(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};r(gt.prototype,yt);const vt=n(null);for(const e in _e)vt[e]=mt(e,_e[e]);function Ct(e){return{get(){const t=nr(this);return Ee(t,e),t.cmpFields[e]},set(t){const n=nr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Ce(n,e))},enumerable:!0,configurable:!0}}function Et(e){return{get(){const t=nr(this);if(!Rn(t))return Ee(t,e),t.cmpProps[e]},set(t){const n=nr(this);n.cmpProps[e]=t,Ce(n,e)},enumerable:!0,configurable:!0}}r(gt.prototype,vt),o(gt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class kt extends ve{constructor(e,t){super((()=>{j(this.debouncing)&&(this.debouncing=!0,me((()=>{if(H(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,H(e.isDirty)&&j(r)&&i>0&&Jn(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function xt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new Error;return{get(){return n.call(this)},set(t){const n=nr(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];F(o)&&(o=n.oar[e]=new kt(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function St(e){return{get(){const t=nr(this);return Ee(t,e),t.cmpFields[e]},set(t){const n=nr(this),r=ht.getProxy(t);r!==n.cmpFields[e]&&(n.cmpFields[e]=r,Ce(n,e))},enumerable:!0,configurable:!0}}function Mt(e){return{get(){const t=nr(this);return Ee(t,e),t.cmpFields[e]},set(t){const n=nr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Ce(n,e))},enumerable:!0,configurable:!0}}const Tt=new Map;const At={apiMethods:fe,apiFields:fe,apiFieldsConfig:fe,wiredMethods:fe,wiredFields:fe,observedFields:fe};const Ot=new Set;function Pt(){return[]}Ot.add(Pt);const $t=n(null),Lt=n(null);function Nt(e){let t=$t[e];return F(t)&&(t=$t[e]=function(){const t=nr(this),{getHook:n}=t;return n(t.component,e)}),t}function Rt(e){let t=Lt[e];return F(t)&&(t=Lt[e]=function(t){const n=nr(this),{setHook:r}=n;t=ht.getReadOnlyProxy(t),r(n.component,e,t)}),t}function _t(e){return function(){const t=nr(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,T.call(arguments))}}function Dt(e,t){return function(n,r,o){if(r===o)return;const i=e[n];F(i)?F(t)||t.apply(this,arguments):Le(this,n)&&(this[i]=o)}}function Ft(e,t,i){let s;B(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},p(s,e),p(s.prototype,e.prototype),o(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=n(null),{attributeChangedCallback:a}=e.prototype,{observedAttributes:c=[]}=e,u=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];l[se(n)]=n,u[n]={get:Nt(n),set:Rt(n),enumerable:!0,configurable:!0}}for(let e=0,t=i.length;e<t;e+=1){const t=i[e];u[t]={value:_t(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:Dt(l,a)},o(s,"observedAttributes",{get:()=>[...c,...d(l)]}),r(s.prototype,u),s}const It=Ft(Te,l(_e),[]);i(It),f(It.prototype);const Ht=new WeakMap;function jt(e){const{shadowSupportMode:o,renderMode:i}=e,s=function(e){const t=Tt.get(e);return F(t)?At:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:f,wiredMethods:p,observedFields:h}=s,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}=m;const C=function(e){let t=a(e);if(I(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(Me(t)){const e=Se(t);t=e===t?gt:e}return t}(e),E=C!==gt?Wt(C):Vt,k=Ft(E.bridge,d(l),d(u)),x=t(n(null),E.props,l),S=t(n(null),E.propsConfig,c),M=t(n(null),E.methods,u),T=t(n(null),E.wire,f,p);g=g||E.connectedCallback,w=w||E.disconnectedCallback,y=y||E.renderedCallback,b=b||E.errorCallback,v=v||E.render;let A=E.shadowSupportMode;F(o)||(A=o);let O=E.renderMode;F(i)||(O="light"===i?0:1);const P=function(e){return Fn.get(e)}(e)||E.template,$=e.name||E.name;r(m,h);return{ctor:e,name:$,wire:T,props:x,propsConfig:S,methods:M,bridge:k,template:P,renderMode:O,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function Bt(e){if(!B(e))return!1;if(e.prototype instanceof gt)return!0;let t=e;do{if(Me(t)){const e=Se(t);if(e===t)return!0;t=e}if(t===gt)return!0}while(!I(t)&&(t=a(t)));return!1}function Wt(e){let t=Ht.get(e);if(F(t)){if(Me(e)){return t=Wt(Se(e)),Ht.set(e,t),t}if(!Bt(e))throw new TypeError(`${e} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);t=jt(e),Ht.set(e,t)}return t}const Vt={ctor:gt,name:gt.name,props:vt,propsConfig:fe,methods:fe,renderMode:1,shadowSupportMode:"reset",wire:fe,bridge:It,template:Pt,render:gt.prototype.render};function Kt(e){const{type:t}=e;return 2===t||3===t}function zt(e,t){return e.key===t.key&&e.sel===t.sel}function Gt(e,t){return"input"===e&&("value"===t||"checked"===t)}const Ut=n(null);function qt(e){if(null==e)return fe;e=W(e)?e:e+"";let t=Ut[e];if(t)return t;t=n(null);let r,o=0;const i=e.length;for(r=0;r<i;r++)32===N.call(e,r)&&(r>o&&(t[_.call(e,o,r)]=!0),o=r+1);return r>o&&(t[_.call(e,o,r)]=!0),Ut[e]=t,t}function Xt(e,t,n,r){var o;o=t,un.has(o)?function(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],a=e[s];const c=t.length-1;let u,d,f,p,h=c,m=t[0],g=t[h],w=!1;for(;o<=s&&i<=h;)tn(l)?tn(a)?tn(m)?tn(g)?zt(l,m)?(Yt(l,m,r),l=e[++o],m=t[++i]):zt(a,g)?(Yt(a,g,r),a=e[--s],g=t[--h]):zt(l,g)?(Yt(l,g,r),ln(l.elm,n,r.nextSibling(a.elm),r),l=e[++o],g=t[--h]):zt(a,m)?(Yt(a,m,r),ln(m.elm,n,l.elm,r),a=e[--s],m=t[++i]):(void 0===u&&(u=dn(e,o,s)),d=u[m.key],F(d)?(Jt(m,n,r,l.elm),m=t[++i]):(f=e[d],tn(f)&&(f.sel!==m.sel?Jt(m,n,r,l.elm):(Yt(f,m,r),w||(w=!0,e=[...e]),e[d]=void 0,ln(f.elm,n,l.elm,r))),m=t[++i])):g=t[--h]:m=t[++i]:a=e[--s]:l=e[++o];if(o<=s||i<=h)if(o>s){let e,o=h;do{e=t[++o]}while(!tn(e)&&o<c);p=tn(e)?e.elm:null,Qt(t,n,r,p,i,h+1)}else en(e,n,r,!0,o,s+1)}(e,t,n,r):function(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void Qt(t,n,r,null);if(0===i)return void en(e,n,r,!0);let s=null;for(let o=i-1;o>=0;o-=1){const i=e[o],l=t[o];l!==i&&(tn(i)?tn(l)?(Yt(i,l,r),s=l.elm):Zt(i,n,r,!0):tn(l)&&(Jt(l,n,r,s),s=l.elm))}}(e,t,n,r)}function Yt(e,t,n){var r,o;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&sn(t,n)}(e,t,n);break;case 4:t.elm=e.elm;break;case 2:!function(e,t,n){const r=t.elm=e.elm;an(e,t,n),Xt(e.children,t.children,r,n)}(e,t,null!==(r=t.data.renderer)&&void 0!==r?r:n);break;case 3:!function(e,t,n){const r=t.elm=e.elm,o=t.vm=e.vm;an(e,t,n),F(o)||cn(t,o);Xt(e.children,t.children,r,n),F(o)||Jn(o)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}}function Jt(e,t,n,r){var o,i;switch(e.type){case 0:!function(e,t,n,r){const{owner:o}=e,{createText:i}=r,s=e.elm=i(e.text);on(s,o,r),ln(s,t,n,r)}(e,t,r,n);break;case 1:!function(e,t,n,r){const{owner:o}=e,{createComment:i}=r,s=e.elm=i(e.text);on(s,o,r),ln(s,t,n,r)}(e,t,r,n);break;case 4:!function(e,t,n,r){const{owner:o}=e,{cloneNode:i,isSyntheticShadowDefined:s}=r,l=e.elm=i(e.fragment,!0);on(l,o,r);const{renderMode:a,shadowMode:c}=o;s&&(1!==c&&0!==a||(l.$shadowStaticNode$=!0));ln(l,t,n,r)}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,a=H(s)?"http://www.w3.org/2000/svg":void 0,c=l(o,a);on(c,i,r),function(e,t,n){const{owner:r}=t;if(rn(e,r,n),1===r.shadowMode){const{data:{context:n}}=t,{stylesheetToken:o}=r.context;F(n)||F(n.lwc)||"manual"!==n.lwc.dom||function(e){e.$domManual$=!0}(e),F(o)||nn(e,o)}}(c,e,r),e.elm=c,an(null,e,r),ln(c,t,n,r),Qt(e.children,c,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:!function(e,t,n,r){const{sel:o,owner:i}=e,s=function(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return F(i)?(i=class extends r{constructor(e){super(),B(e)&&e(this)}},o(e,i),i):i}(o,r);let l;const a=new s((t=>{l=function(e,t,n){let r=rr(e);if(!F(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;if(rn(e,l,n),1===l.shadowMode){const{stylesheetToken:t}=l.context;F(t)||nn(e,t)}return r=er(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(on(a,i,r),e.elm=a,e.vm=l,l)cn(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");an(null,e,r),ln(a,t,n,r),l&&lr(l);Qt(e.children,a,r,null),l&&function(e){or(e)}(l)}(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function Qt(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];tn(i)&&Jt(i,t,n,r)}}function Zt(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&function(e,t,n){n.remove(e,t)}(i,t,n),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;en(e.children,i,n,t);break}case 3:{const{vm:t}=e;F(t)||function(e){Zn(e)}(t)}}}function en(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];tn(i)&&Zt(i,t,n,r)}}function tn(e){return null!=e}function nn(e,t){e.$shadowToken$=t}function rn(e,t,n){const{cmpTemplate:r,context:o}=t,{getClassList:i}=n,s=null==r?void 0:r.stylesheetToken;!F(s)&&o.hasScopedStyles&&i(e).add(s)}function on(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function sn(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function ln(e,t,n,r){r.insert(e,t,n)}function an(e,t,n){I(e)&&(function(e,t){const{elm:n,data:{on:r}}=e;if(F(r))return;const{addEventListener:o}=t;for(const e in r)o(n,e,r[e])}(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(F(r))return;const{getClassList:o}=t,i=o(n);for(const e in r)i.add(e)}(t,n),function(e,t){const{elm:n,data:{styleDecls:r}}=e;if(F(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=I(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),a=qt(o),c=qt(i);let u;for(u in c)F(a[u])&&l.remove(u);for(u in a)F(c[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((I(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;W(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(F(r))return;const o=I(e)?fe:e.data.attrs;if(o===r)return;const{elm:i}=t,{setAttribute:s,removeAttribute:l}=n;for(const e in r){const t=r[e];o[e]!==t&&(Re(i,e),58===N.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===N.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):I(t)||F(t)?l(i,e):s(i,e,t),Ne())}}(e,t,n),function(e,t,n){const{props:r}=t.data;if(F(r))return;const o=I(e)?fe:e.data.props;if(o===r)return;const i=I(e),{elm:s,sel:l}=t,{getProperty:a,setProperty:c}=n;for(const e in r){const t=r[e];(i||t!==(Gt(l,e)?a(s,e):o[e]))&&c(s,e,t)}}(e,t,n)}function cn(e,t){const r=e.aChildren||e.children;t.aChildren=r;const{renderMode:o,shadowMode:i}=t;1!==i&&0!==o||(!function(e,t){var r;const{cmpSlots:o}=e,i=e.cmpSlots=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];if(I(n))continue;let o="";Kt(n)&&(o=(null===(r=n.data.attrs)||void 0===r?void 0:r.slot)||"");const s=i[o]=i[o]||[];k.call(s,n)}if(j(e.isDirty)){const t=d(o);if(t.length!==d(i).length)return void jn(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(F(i[r])||o[r].length!==i[r].length)return void jn(e);const s=o[r],l=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(s[t]!==l[t])return void jn(e)}}}(t,r),e.aChildren=r,e.children=pe)}const un=new WeakMap;function dn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(tn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}const fn=Symbol.iterator;function pn(e,t,n=pe){const r=An();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,owner:r}}function hn(e,t,n,r=pe){const o=An(),{key:i}=n;const s={type:3,sel:e,data:n,children:r,elm:undefined,key:i,ctor:t,owner:o,mode:"open",aChildren:undefined,vm:undefined};return function(e){k.call(An().velements,e)}(s),s}const mn=new Map;let gn=0;function wn(e){var t;return t=e,un.set(t,1),e}let yn=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const bn=i({s:function(e,t,n,r){F(r)||F(r[e])||0===r[e].length||(n=r[e]);const o=An(),{renderMode:i,shadowMode:s}=o;return 0===i?(wn(n),n):(1===s&&wn(n),pn("slot",t,n))},h:pn,c:hn,i:function(e,t){const n=[];if(wn(n),F(e)||null===e)return n;const r=e[fn]();let o=r.next(),i=0,{value:s,done:l}=o;for(;!1===l;){o=r.next(),l=o.done;const e=t(s,i,0===i,!0===l);h(e)?k.apply(n,e):k.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];wn(n);for(let r=0;r<t;r+=1){const t=e[r];h(t)?k.apply(n,t):k.call(n,t)}return n},t:function(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:An()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=An();if(I(t))throw new Error;const n=t;return function(t){Dn(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:undefined,owner:An()}},dc:function(e,t,n,r=pe){if(null==t)return null;if(!Bt(t))throw new Error(`Invalid LWC Constructor ${z(t)} for custom element <${e}>.`);let o=mn.get(t);return F(o)&&(o=gn++,mn.set(t,o)),hn(e,t,Object.assign(Object.assign({},n),{key:`dc:${o}:${n.key}`}),r)},ti:function(e){return e>0&&!(H(e)||j(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:An()}},gid:function(e){const t=An();if(F(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?R.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=An();if(F(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return yn(e)}});function vn(e){return`${e}-host`}function Cn(e){return bn.h("style",{key:"style",attrs:{type:"text/css"}},[bn.t(e)])}function En(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(h(s))k.apply(r,En(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let a;1===n.renderMode?a=0===n.shadowMode:(F(o)&&(o=xn(n)),a=I(o)||0===o.shadowMode),k.call(r,s(i,l,a))}}return r}function kn(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return F(n)||0===n.length||(o=En(n,r,e)),o}function xn(e){let t=e;for(;!I(t);){if(1===t.renderMode)return t;t=t.owner}return t}function Sn(e,t){const{renderMode:n,shadowMode:r,renderer:{ssr:o,insertStylesheet:i}}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)i(t[e]);else{if(o||e.hydrated)return C.call(t,Cn);{const n=function(e){const t=xn(e);return I(t)||1!==t.shadowMode?t:null}(e),r=I(n)?void 0:n.shadowRoot;for(let e=0;e<t.length;e++)i(t[e],r)}}return null}let Mn=!1,Tn=null;function An(){return Tn}function On(e){Tn=e}const Pn=($n=(e,t)=>{const{createFragment:n}=t;return n(e)},(e,...t)=>{const r=n(null);return function(){const{context:{hasScopedStyles:n,stylesheetToken:o},shadowMode:i,renderer:s}=An(),l=!F(o),a=1===i;let c=0;if(l&&n&&(c|=1),l&&a&&(c|=2),!F(r[c]))return r[c];const u=n&&l?" "+o:"",d=n&&l?` class="${o}"`:"",f=l&&a?" "+o:"";let p="";for(let n=0,r=t.length;n<r;n++)switch(t[n]){case 0:p+=e[n]+u;break;case 1:p+=e[n]+d;break;case 2:p+=e[n]+f;break;case 3:p+=e[n]+d+f}return p+=e[e.length-1],r[c]=$n(p,s),r[c]}});var $n;function Ln(e,t){const r=Mn,o=Tn;let i=[];return fr(e,e.owner,(()=>{Tn=e}),(()=>{const{component:r,context:o,cmpSlots:s,cmpTemplate:l,tro:a}=e;a.observe((()=>{if(t!==l){if(I(l)||dr(e),a=t,!Ot.has(a))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${z(t)}.`);e.cmpTemplate=t,o.tplCache=n(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!F(t))for(let e=0;e<t.length;e++)if(H(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:a}}=e,{stylesheets:c,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let p,h,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:y}=r;F(g)||(w&&s(n).remove(vn(g)),y&&l(n,vn(g))),F(c)||0===c.length||(p=u),F(p)||(f&&(s(n).add(vn(p)),h=!0),d&&(a(n,vn(p),""),m=!0)),r.stylesheetToken=p,r.hasTokenInClass=h,r.hasTokenInAttribute=m}(e,t);const r=kn(e,t);o.styleVNodes=0===r.length?null:Sn(e,r)}var a;e.velements=[],Mn=!0,i=t.call(void 0,bn,r,s,o.tplCache);const{styleVNodes:c}=o;I(c)||P.apply(i,c)}))}),(()=>{Mn=r,Tn=o})),i}let Nn=null;function Rn(e){return Nn===e}function _n(e,t,n){const{component:r,callHook:o,owner:i}=e;fr(e,i,V,(()=>{o(r,t,n)}),V)}function Dn(e,t,n,r){const{callHook:o,owner:i}=e;fr(e,i,V,(()=>{o(n,t,[r])}),V)}const Fn=new Map;function In(e){return new ve((()=>{const{isDirty:t}=e;j(t)&&(jn(e),function(e){const{renderer:{ssr:t}}=e;if(H(t)||H(e.isScheduled))return;e.isScheduled=!0,0===ir.length&&me(sr);k.call(ir,e)}(e))}))}function Hn(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=An();let s,l=!1;return fr(e,o,(()=>{On(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{On(i)})),l?Ln(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function jn(e){e.isDirty=!0}const Bn=new WeakMap;function Wn(e,t){if(!B(t))throw new TypeError;let n=Bn.get(t);return F(n)&&(n=function(n){Dn(e,t,void 0,n)},Bn.set(t,n)),n}const Vn=n(null),Kn=["rendered","connected","disconnected"];function zn(e,t){const{component:n,def:r,context:o}=e;for(let e=0,i=t.length;e<i;++e)t[e].call(void 0,n,{},r,o)}let Gn=0;const Un=new WeakMap;function qn(e,t,n=[]){return t.apply(e,n)}function Xn(e,t,n){e[t]=n}function Yn(e,t){return e[t]}function Jn(e){or(e)}function Qn(e){const t=nr(e);1===t.state&&function(e){Zn(nr(e))}(e),lr(t),or(t)}function Zn(e){const{state:t}=e;if(2!==t){const{oar:t,tro:n}=e;n.reset();for(const e in t)t[e].reset();!function(e){j(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=Vn;t&&zn(e,t);ar(e)&&function(e){const{wiredDisconnecting:t}=e.context;fr(e,e,V,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),V)}(e);const{disconnectedCallback:n}=e.def;F(n)||_n(e,n)}(e),cr(e),function(e){const{aChildren:t}=e;ur(t)}(e)}}function er(e,t,r,o){const{mode:i,owner:s,tagName:l,hydrated:a}=o,c=Wt(t),u={elm:e,def:c,idx:Gn++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,children:pe,aChildren:pe,velements:pe,cmpProps:n(null),cmpFields:n(null),cmpSlots:n(null),oar:n(null),cmpTemplate:null,hydrated:Boolean(a),renderMode:c.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:fe,wiredConnecting:pe,wiredDisconnecting:pe},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:qn,setHook:Xn,getHook:Yn,renderer:r};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ue.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!I(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=I(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,r),u.tro=In(u),function(e,t){const n=Nn;let r;Nn=e;try{const o=new t;if(Nn.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(Nn=n,!F(r))throw xe(e,r),r}}(u,c.ctor),ar(u)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],s=pr.get(i);if(!F(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=mr(e,t,s),a=s.dynamic.length>0;k.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!a?i():Promise.resolve().then(i)})),k.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function tr(e,t){Un.set(e,t)}function nr(e){return Un.get(e)}function rr(e){return Un.get(e)}function or(e){if(H(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&fr(e,e,(()=>{}),(()=>{Xt(r,t,n,o)}),(()=>{}));1===e.state&&function(e){const{def:{renderedCallback:t},renderer:{ssr:n}}=e;if(H(n))return;const{rendered:r}=Vn;r&&zn(e,r);F(t)||_n(e,t)}(e)}(e,Hn(e))}}let ir=[];function sr(){const e=ir.sort(((e,t)=>e.idx-t.idx));ir=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{or(r)}catch(r){throw t+1<n&&(0===ir.length&&me(sr),P.apply(ir,T.call(e,t+1))),r}}}function lr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=Vn;n&&zn(e,n),ar(e)&&function(e){const{wiredConnecting:t}=e.context;for(let e=0,n=t.length;e<n;e+=1)t[e]()}(e);const{connectedCallback:r}=e.def;F(r)||_n(e,r)}function ar(e){return l(e.def.wire).length>0}function cr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!F(n)){const e=rr(n);F(e)||Zn(e)}}}function ur(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!I(n)&&!F(n.elm))switch(n.type){case 2:ur(n.children);break;case 3:Zn(nr(n.elm));break}}}function dr(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];I(o)||F(o.elm)||r(o.elm,n)}e.children=pe,cr(e),e.velements=pe}function fr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!F(i)){xe(e,i);const n=I(t)?void 0:function(e){let t=e;for(;!I(t);){if(!F(t.def.errorCallback))return t;t=t.owner}}(t);if(F(n))throw i;dr(e);_n(n,n.def.errorCallback,[i,i.wcStack])}}}const pr=new Map;class hr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),r(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function mr(e,t,n){const{method:r,adapter:i,configCallback:s,dynamic:l}=n,a=F(r)?function(e,t){const{cmpFields:n}=e;return r=>{r!==e.cmpFields[t]&&(n[t]=r,Ce(e,t))}}(e,t):function(e,t){return n=>{fr(e,e.owner,V,(()=>{t.call(e.component,n)}),V)}}(e,r);let c,u;o(a,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),o(a,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),fr(e,e,V,(()=>{u=new i(a)}),V);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=new ve((()=>{!1===r&&(r=!0,Promise.resolve().then((()=>{r=!1,o.reset(),i()})))})),i=()=>{let r;o.observe((()=>r=t(e))),n(r)};return{computeConfigAndUpdate:i,ro:o}}(e.component,s,(t=>{fr(e,e,V,(()=>{u.update(t,c)}),V)}));return F(i.contextSchema)||function(e,t,n){const{adapter:r}=t,o=wr(r);if(F(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:a}}=e;k.call(s,(()=>{const e=new hr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){k.call(l,e)}});a(i,e)}))}(e,n,(t=>{c!==t&&(c=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const gr=new Map;function wr(e){return gr.get(e)}function yr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};pr.set(e,o)}function br(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};pr.set(e,o)}let vr=!1;var Cr;!function(e){e.Text="text",e.Comment="comment",e.Raw="raw",e.Element="element",e.ShadowRoot="shadow-root"}(Cr||(Cr={}));const Er=/\s+/g;function kr(e){return new Set(e.split(Er).filter((e=>e.length)))}function xr(e){return Array.from(e).join(" ")}function Sr(e){return function(){throw new TypeError(`"${e}" is not supported in this environment`)}}function Mr(e,t){return{type:Cr.Element,name:e,namespace:null!=t?t:Q,parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}}}const Tr=n(null),Ar=new WeakMap;function Or(e,t,n=null){const r=e.attributes.find((e=>e.name===t&&e.namespace===n));return r?r.value:null}function Pr(e,t,n,r=null){const o=e.attributes.find((e=>e.name===t&&e.namespace===r));F(r)&&(r=null),F(o)?e.attributes.push({name:t,namespace:r,value:String(n)}):o.value=n}function $r(e,t,n){e.attributes=e.attributes.filter((e=>e.name!==t&&e.namespace!==n))}const Lr=V,Nr=V,Rr=V,_r=Sr("dispatchEvent"),Dr=Sr("getBoundingClientRect"),Fr=Sr("querySelector"),Ir=Sr("querySelectorAll"),Hr=Sr("getElementsByTagName"),jr=Sr("getElementsByClassName"),Br=Sr("getChildren"),Wr=Sr("getChildNodes"),Vr=Sr("getFirstChild"),Kr=Sr("getFirstElementChild"),zr=Sr("getLastChild"),Gr=Sr("getLastElementChild");const Ur={ssr:!0,isNativeShadowDefined:!1,isSyntheticShadowDefined:!1,HTMLElementExported:class{constructor(){const{constructor:e}=this,t=Ar.get(e);if(!t)throw new TypeError("Invalid Construction");return Mr(t)}},isHydrating:function(){return!1},insert:function(e,t,n){if(null!==e.parent&&e.parent!==t){const t=e.parent.children.indexOf(e);e.parent.children.splice(t,1)}e.parent=t;const r=I(n)?-1:t.children.indexOf(n);-1===r?t.children.push(e):t.children.splice(r,0,e)},remove:function(e,t){const n=t.children.indexOf(e);t.children.splice(n,1)},cloneNode:function(e){return e},createFragment:function(e){return{type:Cr.Raw,parent:null,value:e}},createElement:Mr,createText:function(e){return{type:Cr.Text,value:String(e),parent:null}},createComment:function(e){return{type:Cr.Comment,value:e,parent:null}},nextSibling:function(e){const{parent:t}=e;if(I(t))return null;const n=t.children.indexOf(e);return t.children[n+1]||null},attachShadow:function(e,t){return e.shadowRoot={type:Cr.ShadowRoot,children:[],mode:t.mode,delegatesFocus:!!t.delegatesFocus},e.shadowRoot},getProperty:function(e,t){var n,r;if(t in e)return e[t];if(e.type===Cr.Element){const o=se(t);if(te(o,e.name))return null!==(n=Or(e,o))&&void 0!==n&&n;if(re(o)||Y(o))return Or(e,o);if("input"===e.name&&"value"===t)return null!==(r=Or(e,"value"))&&void 0!==r?r:""}},setProperty:function(e,t,n){if(t in e)return e[t]=n;if(e.type===Cr.Element){const r=se(t);if("innerHTML"===t)return void(e.children=[{type:Cr.Raw,parent:e,value:n}]);if(te(r,e.name))return!0===n?Pr(e,r,""):$r(e,r);if(re(r)||Y(r))return Pr(e,r,n);if("input"===e.name&&"value"===r)return I(n)||F(n)?$r(e,"value"):Pr(e,"value",n)}},setText:function(e,t){e.type===Cr.Text?e.value=t:e.type===Cr.Element&&(e.children=[{type:Cr.Text,parent:e,value:t}])},getAttribute:Or,setAttribute:Pr,removeAttribute:$r,addEventListener:Nr,removeEventListener:Rr,dispatchEvent:_r,getClassList:function(e){function t(){let t=e.attributes.find((e=>"class"===e.name&&I(e.namespace)));return F(t)&&(t={name:"class",namespace:null,value:""},e.attributes.push(t)),t}return{add(...e){const n=t(),r=kr(n.value);e.forEach((e=>r.add(e))),n.value=xr(r)},remove(...e){const n=t(),r=kr(n.value);e.forEach((e=>r.delete(e))),n.value=xr(r)}}},setCSSStyleProperty:function(e,t,n,r){const o=e.attributes.find((e=>"style"===e.name&&I(e.namespace))),i=`${t}: ${n}${r?" !important":""}`;F(o)?e.attributes.push({name:"style",namespace:null,value:i}):o.value+=`; ${i}`},getBoundingClientRect:Dr,querySelector:Fr,querySelectorAll:Ir,getElementsByTagName:Hr,getElementsByClassName:jr,getChildren:Br,getChildNodes:Wr,getFirstChild:Vr,getFirstElementChild:Kr,getLastChild:zr,getLastElementChild:Gr,isConnected:function(e){return!I(e.parent)},insertStylesheet:Lr,assertInstanceOfHTMLElement:V,defineCustomElement:function(e,t,n){!function(e,t){if(e!==D.call(e)||Tr[e])throw new TypeError("Invalid Registration");Tr[e]=t,Ar.set(t,e)}(e,t)},getCustomElement:function(e){return Tr[e]}};function qr(e){return e.map((e=>{switch(e.type){case Cr.Text:return""===e.value?"":ae(e.value);case Cr.Comment:return`\x3c!--${ae(e.value)}--\x3e`;case Cr.Raw:return e.value;case Cr.Element:return Xr(e)}})).join("")}function Xr(e){let t="";const{name:n,namespace:r}=e,o=r!==Q,i=e.children.length>0;var s;return t+=`<${n}${e.attributes.length?` ${s=e.attributes,s.map((e=>e.value.length?`${e.name}=${JSON.stringify(ae(e.value))}`:e.name)).join(" ")}`:""}`,o&&!i?(t+="/>",t):(t+=">",e.shadowRoot&&(t+=function(e){const t=[`shadowroot="${e.mode}"`];return e.delegatesFocus&&t.push("shadowrootdelegatesfocus"),`<template ${t.join(" ")}>${qr(e.children)}</template>`}(e.shadowRoot)),t+=qr(e.children),function(e,t){return t===Q&&Z.has(e.toLowerCase())}(n,r)&&!i||(t+=`</${n}>`),t)}const Yr={type:Cr.Element,name:"fake-root-element",namespace:Q,parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}};i(gt),f(gt.prototype),exports.LightningElement=gt,exports.api=function(){throw new Error},exports.createContextProvider=function(e){let t=wr(e);if(!F(t))throw new Error("Adapter already has a context provider.");t=function(){function e(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}return e()+e()+"-"+e()+"-"+e()+"-"+e()+"-"+e()+e()+e()}(),function(e,t){gr.set(e,t)}(e,t);const n=new WeakSet;return(e,r)=>{if(n.has(e))throw new Error(`Adapter was already installed on ${e}.`);n.add(e);const{consumerConnectedCallback:o,consumerDisconnectedCallback:i}=r;e.addEventListener(t,(e=>{const{setNewContext:t,setDisconnectedCallback:n}=e,r={provide(e){t(e)}};n((()=>{F(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},exports.freezeTemplate=function(e){},exports.getComponentDef=function(e){const t=Wt(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:se(e)};const a={};for(const e in s)a[e]=s[e].value;return{ctor:n,name:r,props:l,methods:a}},exports.isComponentConstructor=Bt,exports.parseFragment=Pn,exports.parseSVGFragment=Pn,exports.readonly=function(e){return ht.getReadOnlyProxy(e)},exports.register=function(e){for(let t=0;t<Kn.length;++t){const n=Kn[t];if(n in e){let t=Vn[n];F(t)&&(Vn[n]=t=[]),k.call(t,e[n])}}},exports.registerComponent=function(e,{tmpl:t}){return B(e)&&Fn.set(e,t),e},exports.registerDecorators=function(e,t){const r=e.prototype,{publicProps:i,publicMethods:l,wire:a,track:c,fields:u}=t,d=n(null),f=n(null),p=n(null),h=n(null),m=n(null),g=n(null);let w;if(!F(i))for(const e in i){const t=i[e];if(g[e]=t.config,w=s(r,e),t.config>0){if(F(w))throw new Error;w=xt(e,w)}else w=F(w)||F(w.get)?Et(e):xt(e,w);f[e]=w,o(r,e,w)}if(F(l)||$.call(l,(e=>{if(w=s(r,e),F(w))throw new Error;d[e]=w})),!F(a))for(const e in a){const{adapter:t,method:n,config:i,dynamic:l=[]}=a[e];if(w=s(r,e),1===n){if(F(w))throw new Error;p[e]=w,yr(w,t,i,l)}else w=Mt(e),h[e]=w,br(w,t,i,l),o(r,e,w)}if(!F(c))for(const e in c)w=s(r,e),w=St(e),o(r,e,w);if(!F(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=s(r,t);const n=!F(i)&&t in i,o=!F(c)&&t in c;n||o||(m[t]=Ct(t))}return function(e,t){Tt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:p,wiredFields:h,observedFields:m}),e},exports.registerTemplate=function(e){return Ot.add(e),o(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return F(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=F(e)?void 0:e.shadowAttribute}}),e},exports.renderComponent=function(e,t,n={}){if(!W(e))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${e}.`);if(!B(t))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if("object"!=typeof n||I(n))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${n}.`);const r=Ur.createElement(e);er(r,t,Ur,{mode:"open",owner:null,tagName:e});for(const[e,t]of Object.entries(n))r[e]=t;return r.parent=Yr,Qn(r),Xr(r)},exports.renderer=Ur,exports.sanitizeAttribute=function(e,t,n,r){return r},exports.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(F(ce[e])){const n=d(ce).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ue[e];if(!F(n))return void console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);o(ue,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},exports.setFeatureFlagForTest=function(e,t){},exports.setHooks=function(t){var n;e.isFalse(vr,"Hooks are already overridden, only one definition is allowed."),vr=!0,n=t.sanitizeHtmlContent,yn=n},exports.track=function(e){if(1===arguments.length)return ht.getProxy(e);throw new Error},exports.unwrap=function(e){return ht.unwrapProxy(e)},exports.wire=function(e,t){throw new Error};
|