lwc 2.21.1 → 2.23.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 +222 -199
- package/dist/engine-dom/iife/es2017/engine-dom.js +222 -199
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +211 -188
- package/dist/engine-dom/iife/es5/engine-dom.js +263 -216
- package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +239 -192
- package/dist/engine-dom/umd/es2017/engine-dom.js +222 -199
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +211 -188
- package/dist/engine-dom/umd/es5/engine-dom.js +263 -216
- package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +239 -192
- package/dist/engine-server/commonjs/es2017/engine-server.js +116 -403
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
- package/dist/engine-server/esm/es2017/engine-server.js +116 -403
- package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +30 -27
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +30 -27
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +29 -26
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +32 -31
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +31 -30
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +30 -27
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +29 -26
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +32 -31
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +31 -30
- 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
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
const KEY__SHADOW_TOKEN = '$shadowToken$';
|
|
90
90
|
const KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
|
|
91
91
|
const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
92
|
-
/** version: 2.
|
|
92
|
+
/** version: 2.23.1 */
|
|
93
93
|
|
|
94
94
|
/*
|
|
95
95
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
// defaultView can be null when a document has no browsing context. For example, the owner document
|
|
241
241
|
// of a node in a template doesn't have a default view: https://jsfiddle.net/hv9z0q5a/
|
|
242
242
|
const defaultViewGetter = getOwnPropertyDescriptor(Document.prototype, 'defaultView').get;
|
|
243
|
-
const { createComment,
|
|
243
|
+
const { createComment, querySelectorAll, getElementById, getElementsByClassName, getElementsByTagName, getElementsByTagNameNS, } = Document.prototype;
|
|
244
244
|
// In Firefox v57 and lower, getElementsByName is defined on HTMLDocument.prototype
|
|
245
245
|
// In all other browsers have the method on Document.prototype
|
|
246
246
|
const { getElementsByName } = HTMLDocument.prototype;
|
|
@@ -1050,8 +1050,8 @@
|
|
|
1050
1050
|
if (!_globalThis.lwcRuntimeFlags) {
|
|
1051
1051
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
1052
1052
|
}
|
|
1053
|
-
const
|
|
1054
|
-
/** version: 2.
|
|
1053
|
+
const lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1054
|
+
/** version: 2.23.1 */
|
|
1055
1055
|
|
|
1056
1056
|
/*
|
|
1057
1057
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1294,7 +1294,7 @@
|
|
|
1294
1294
|
},
|
|
1295
1295
|
textContent: {
|
|
1296
1296
|
get() {
|
|
1297
|
-
if (!
|
|
1297
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_PATCH) {
|
|
1298
1298
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
1299
1299
|
return textContentGetterPatched.call(this);
|
|
1300
1300
|
}
|
|
@@ -1401,7 +1401,7 @@
|
|
|
1401
1401
|
return true;
|
|
1402
1402
|
}
|
|
1403
1403
|
|
|
1404
|
-
if (!
|
|
1404
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_PATCH) {
|
|
1405
1405
|
if (otherNode == null) {
|
|
1406
1406
|
return false;
|
|
1407
1407
|
}
|
|
@@ -1427,7 +1427,7 @@
|
|
|
1427
1427
|
},
|
|
1428
1428
|
cloneNode: {
|
|
1429
1429
|
value(deep) {
|
|
1430
|
-
if (!
|
|
1430
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_PATCH) {
|
|
1431
1431
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
1432
1432
|
return cloneNodePatched.call(this, deep);
|
|
1433
1433
|
}
|
|
@@ -3644,7 +3644,7 @@
|
|
|
3644
3644
|
defineProperties(Element.prototype, {
|
|
3645
3645
|
innerHTML: {
|
|
3646
3646
|
get() {
|
|
3647
|
-
if (!
|
|
3647
|
+
if (!lwcRuntimeFlags.ENABLE_ELEMENT_PATCH) {
|
|
3648
3648
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
3649
3649
|
return innerHTMLGetterPatched.call(this);
|
|
3650
3650
|
}
|
|
@@ -3669,7 +3669,7 @@
|
|
|
3669
3669
|
},
|
|
3670
3670
|
outerHTML: {
|
|
3671
3671
|
get() {
|
|
3672
|
-
if (!
|
|
3672
|
+
if (!lwcRuntimeFlags.ENABLE_ELEMENT_PATCH) {
|
|
3673
3673
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
3674
3674
|
return outerHTMLGetterPatched.call(this);
|
|
3675
3675
|
}
|
|
@@ -3797,7 +3797,7 @@
|
|
|
3797
3797
|
const elm = ArrayFind.call(nodeList, elm => getNodeNearestOwnerKey(elm) === ownerKey);
|
|
3798
3798
|
return isUndefined(elm) ? null : elm;
|
|
3799
3799
|
} else {
|
|
3800
|
-
if (!
|
|
3800
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_LIST_PATCH) {
|
|
3801
3801
|
// `this` is a manually inserted element inside a shadowRoot, return the first element.
|
|
3802
3802
|
return nodeList.length === 0 ? null : nodeList[0];
|
|
3803
3803
|
} // Element is inside a shadow but we dont know which one. Use the
|
|
@@ -3809,7 +3809,7 @@
|
|
|
3809
3809
|
return isUndefined(elm) ? null : elm;
|
|
3810
3810
|
}
|
|
3811
3811
|
} else {
|
|
3812
|
-
if (!
|
|
3812
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_LIST_PATCH) {
|
|
3813
3813
|
if (!(this instanceof HTMLBodyElement)) {
|
|
3814
3814
|
const elm = nodeList[0];
|
|
3815
3815
|
return isUndefined(elm) ? null : elm;
|
|
@@ -3892,7 +3892,7 @@
|
|
|
3892
3892
|
value() {
|
|
3893
3893
|
const nodeList = arrayFromCollection(querySelectorAll$1.apply(this, ArraySlice.call(arguments)));
|
|
3894
3894
|
|
|
3895
|
-
if (!
|
|
3895
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_LIST_PATCH) {
|
|
3896
3896
|
const filteredResults = getFilteredArrayOfNodes(this, nodeList, 0
|
|
3897
3897
|
/* ShadowDomSemantic.Disabled */
|
|
3898
3898
|
);
|
|
@@ -3916,7 +3916,7 @@
|
|
|
3916
3916
|
value() {
|
|
3917
3917
|
const elements = arrayFromCollection(getElementsByClassName$1.apply(this, ArraySlice.call(arguments)));
|
|
3918
3918
|
|
|
3919
|
-
if (!
|
|
3919
|
+
if (!lwcRuntimeFlags.ENABLE_HTML_COLLECTIONS_PATCH) {
|
|
3920
3920
|
return createStaticHTMLCollection(getNonPatchedFilteredArrayOfNodes(this, elements));
|
|
3921
3921
|
}
|
|
3922
3922
|
|
|
@@ -3934,7 +3934,7 @@
|
|
|
3934
3934
|
value() {
|
|
3935
3935
|
const elements = arrayFromCollection(getElementsByTagName$1.apply(this, ArraySlice.call(arguments)));
|
|
3936
3936
|
|
|
3937
|
-
if (!
|
|
3937
|
+
if (!lwcRuntimeFlags.ENABLE_HTML_COLLECTIONS_PATCH) {
|
|
3938
3938
|
return createStaticHTMLCollection(getNonPatchedFilteredArrayOfNodes(this, elements));
|
|
3939
3939
|
}
|
|
3940
3940
|
|
|
@@ -3952,7 +3952,7 @@
|
|
|
3952
3952
|
value() {
|
|
3953
3953
|
const elements = arrayFromCollection(getElementsByTagNameNS$1.apply(this, ArraySlice.call(arguments)));
|
|
3954
3954
|
|
|
3955
|
-
if (!
|
|
3955
|
+
if (!lwcRuntimeFlags.ENABLE_HTML_COLLECTIONS_PATCH) {
|
|
3956
3956
|
return createStaticHTMLCollection(getNonPatchedFilteredArrayOfNodes(this, elements));
|
|
3957
3957
|
}
|
|
3958
3958
|
|
|
@@ -4675,11 +4675,11 @@
|
|
|
4675
4675
|
if (innerTextGetter !== null && innerTextSetter !== null) {
|
|
4676
4676
|
defineProperty(HTMLElement.prototype, 'innerText', {
|
|
4677
4677
|
get() {
|
|
4678
|
-
if (!
|
|
4678
|
+
if (!lwcRuntimeFlags.ENABLE_INNER_OUTER_TEXT_PATCH) {
|
|
4679
4679
|
return innerTextGetter.call(this);
|
|
4680
4680
|
}
|
|
4681
4681
|
|
|
4682
|
-
if (!
|
|
4682
|
+
if (!lwcRuntimeFlags.ENABLE_ELEMENT_PATCH) {
|
|
4683
4683
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
4684
4684
|
return getInnerText(this);
|
|
4685
4685
|
}
|
|
@@ -4711,11 +4711,11 @@
|
|
|
4711
4711
|
// As a setter, it removes the current node and replaces it with the given text.
|
|
4712
4712
|
defineProperty(HTMLElement.prototype, 'outerText', {
|
|
4713
4713
|
get() {
|
|
4714
|
-
if (!
|
|
4714
|
+
if (!lwcRuntimeFlags.ENABLE_INNER_OUTER_TEXT_PATCH) {
|
|
4715
4715
|
return outerTextGetter.call(this);
|
|
4716
4716
|
}
|
|
4717
4717
|
|
|
4718
|
-
if (!
|
|
4718
|
+
if (!lwcRuntimeFlags.ENABLE_ELEMENT_PATCH) {
|
|
4719
4719
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
4720
4720
|
return getInnerText(this);
|
|
4721
4721
|
}
|
|
@@ -4780,16 +4780,19 @@
|
|
|
4780
4780
|
},
|
|
4781
4781
|
configurable: true,
|
|
4782
4782
|
});
|
|
4783
|
+
function recursivelySetShadowResolver(node, fn) {
|
|
4784
|
+
node[KEY__SHADOW_RESOLVER] = fn;
|
|
4785
|
+
const childNodes = childNodesGetter.call(node);
|
|
4786
|
+
for (let i = 0, n = childNodes.length; i < n; i++) {
|
|
4787
|
+
recursivelySetShadowResolver(childNodes[i], fn);
|
|
4788
|
+
}
|
|
4789
|
+
}
|
|
4783
4790
|
defineProperty(Element.prototype, KEY__SHADOW_STATIC, {
|
|
4784
4791
|
set(v) {
|
|
4785
4792
|
// Marking an element as static will propagate the shadow resolver to the children.
|
|
4786
|
-
const fn = this[KEY__SHADOW_RESOLVER];
|
|
4787
4793
|
if (v) {
|
|
4788
|
-
const
|
|
4789
|
-
|
|
4790
|
-
while ((currentNode = treeWalker.nextNode())) {
|
|
4791
|
-
currentNode[KEY__SHADOW_RESOLVER] = fn;
|
|
4792
|
-
}
|
|
4794
|
+
const fn = this[KEY__SHADOW_RESOLVER];
|
|
4795
|
+
recursivelySetShadowResolver(this, fn);
|
|
4793
4796
|
}
|
|
4794
4797
|
this[KEY__SHADOW_STATIC_PRIVATE] = v;
|
|
4795
4798
|
},
|
|
@@ -4913,6 +4916,6 @@
|
|
|
4913
4916
|
},
|
|
4914
4917
|
configurable: true,
|
|
4915
4918
|
});
|
|
4916
|
-
/** version: 2.
|
|
4919
|
+
/** version: 2.23.1 */
|
|
4917
4920
|
|
|
4918
4921
|
}));
|
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
var hasNativeSymbolSupport = /*@__PURE__*/function () {
|
|
202
202
|
return Symbol('x').toString() === 'Symbol(x)';
|
|
203
203
|
}();
|
|
204
|
-
/** version: 2.
|
|
204
|
+
/** version: 2.23.1 */
|
|
205
205
|
|
|
206
206
|
/*
|
|
207
207
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -360,7 +360,6 @@
|
|
|
360
360
|
var defaultViewGetter = getOwnPropertyDescriptor(Document.prototype, 'defaultView').get;
|
|
361
361
|
var _Document$prototype = Document.prototype,
|
|
362
362
|
createComment = _Document$prototype.createComment,
|
|
363
|
-
createTreeWalker = _Document$prototype.createTreeWalker,
|
|
364
363
|
querySelectorAll = _Document$prototype.querySelectorAll,
|
|
365
364
|
getElementById = _Document$prototype.getElementById,
|
|
366
365
|
getElementsByClassName = _Document$prototype.getElementsByClassName,
|
|
@@ -1301,8 +1300,8 @@
|
|
|
1301
1300
|
});
|
|
1302
1301
|
}
|
|
1303
1302
|
|
|
1304
|
-
var
|
|
1305
|
-
/** version: 2.
|
|
1303
|
+
var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1304
|
+
/** version: 2.23.1 */
|
|
1306
1305
|
|
|
1307
1306
|
/*
|
|
1308
1307
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1552,7 +1551,7 @@
|
|
|
1552
1551
|
},
|
|
1553
1552
|
textContent: {
|
|
1554
1553
|
get: function get() {
|
|
1555
|
-
if (!
|
|
1554
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_PATCH) {
|
|
1556
1555
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
1557
1556
|
return textContentGetterPatched.call(this);
|
|
1558
1557
|
}
|
|
@@ -1653,7 +1652,7 @@
|
|
|
1653
1652
|
return true;
|
|
1654
1653
|
}
|
|
1655
1654
|
|
|
1656
|
-
if (!
|
|
1655
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_PATCH) {
|
|
1657
1656
|
if (otherNode == null) {
|
|
1658
1657
|
return false;
|
|
1659
1658
|
}
|
|
@@ -1678,7 +1677,7 @@
|
|
|
1678
1677
|
},
|
|
1679
1678
|
cloneNode: {
|
|
1680
1679
|
value: function value(deep) {
|
|
1681
|
-
if (!
|
|
1680
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_PATCH) {
|
|
1682
1681
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
1683
1682
|
return cloneNodePatched.call(this, deep);
|
|
1684
1683
|
}
|
|
@@ -4228,7 +4227,7 @@
|
|
|
4228
4227
|
defineProperties(Element.prototype, {
|
|
4229
4228
|
innerHTML: {
|
|
4230
4229
|
get: function get() {
|
|
4231
|
-
if (!
|
|
4230
|
+
if (!lwcRuntimeFlags.ENABLE_ELEMENT_PATCH) {
|
|
4232
4231
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
4233
4232
|
return innerHTMLGetterPatched.call(this);
|
|
4234
4233
|
}
|
|
@@ -4251,7 +4250,7 @@
|
|
|
4251
4250
|
},
|
|
4252
4251
|
outerHTML: {
|
|
4253
4252
|
get: function get() {
|
|
4254
|
-
if (!
|
|
4253
|
+
if (!lwcRuntimeFlags.ENABLE_ELEMENT_PATCH) {
|
|
4255
4254
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
4256
4255
|
return outerHTMLGetterPatched.call(this);
|
|
4257
4256
|
}
|
|
@@ -4377,7 +4376,7 @@
|
|
|
4377
4376
|
});
|
|
4378
4377
|
return isUndefined(elm) ? null : elm;
|
|
4379
4378
|
} else {
|
|
4380
|
-
if (!
|
|
4379
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_LIST_PATCH) {
|
|
4381
4380
|
// `this` is a manually inserted element inside a shadowRoot, return the first element.
|
|
4382
4381
|
return nodeList.length === 0 ? null : nodeList[0];
|
|
4383
4382
|
} // Element is inside a shadow but we dont know which one. Use the
|
|
@@ -4393,7 +4392,7 @@
|
|
|
4393
4392
|
return isUndefined(_elm) ? null : _elm;
|
|
4394
4393
|
}
|
|
4395
4394
|
} else {
|
|
4396
|
-
if (!
|
|
4395
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_LIST_PATCH) {
|
|
4397
4396
|
if (!(this instanceof HTMLBodyElement)) {
|
|
4398
4397
|
var _elm3 = nodeList[0];
|
|
4399
4398
|
return isUndefined(_elm3) ? null : _elm3;
|
|
@@ -4485,7 +4484,7 @@
|
|
|
4485
4484
|
value: function value() {
|
|
4486
4485
|
var nodeList = arrayFromCollection(querySelectorAll$1.apply(this, ArraySlice.call(arguments)));
|
|
4487
4486
|
|
|
4488
|
-
if (!
|
|
4487
|
+
if (!lwcRuntimeFlags.ENABLE_NODE_LIST_PATCH) {
|
|
4489
4488
|
var filteredResults = getFilteredArrayOfNodes(this, nodeList, 0
|
|
4490
4489
|
/* ShadowDomSemantic.Disabled */
|
|
4491
4490
|
);
|
|
@@ -4508,7 +4507,7 @@
|
|
|
4508
4507
|
value: function value() {
|
|
4509
4508
|
var elements = arrayFromCollection(getElementsByClassName$1.apply(this, ArraySlice.call(arguments)));
|
|
4510
4509
|
|
|
4511
|
-
if (!
|
|
4510
|
+
if (!lwcRuntimeFlags.ENABLE_HTML_COLLECTIONS_PATCH) {
|
|
4512
4511
|
return createStaticHTMLCollection(getNonPatchedFilteredArrayOfNodes(this, elements));
|
|
4513
4512
|
}
|
|
4514
4513
|
|
|
@@ -4525,7 +4524,7 @@
|
|
|
4525
4524
|
value: function value() {
|
|
4526
4525
|
var elements = arrayFromCollection(getElementsByTagName$1.apply(this, ArraySlice.call(arguments)));
|
|
4527
4526
|
|
|
4528
|
-
if (!
|
|
4527
|
+
if (!lwcRuntimeFlags.ENABLE_HTML_COLLECTIONS_PATCH) {
|
|
4529
4528
|
return createStaticHTMLCollection(getNonPatchedFilteredArrayOfNodes(this, elements));
|
|
4530
4529
|
}
|
|
4531
4530
|
|
|
@@ -4542,7 +4541,7 @@
|
|
|
4542
4541
|
value: function value() {
|
|
4543
4542
|
var elements = arrayFromCollection(getElementsByTagNameNS$1.apply(this, ArraySlice.call(arguments)));
|
|
4544
4543
|
|
|
4545
|
-
if (!
|
|
4544
|
+
if (!lwcRuntimeFlags.ENABLE_HTML_COLLECTIONS_PATCH) {
|
|
4546
4545
|
return createStaticHTMLCollection(getNonPatchedFilteredArrayOfNodes(this, elements));
|
|
4547
4546
|
}
|
|
4548
4547
|
|
|
@@ -5373,11 +5372,11 @@
|
|
|
5373
5372
|
if (innerTextGetter !== null && innerTextSetter !== null) {
|
|
5374
5373
|
defineProperty(HTMLElement.prototype, 'innerText', {
|
|
5375
5374
|
get: function get() {
|
|
5376
|
-
if (!
|
|
5375
|
+
if (!lwcRuntimeFlags.ENABLE_INNER_OUTER_TEXT_PATCH) {
|
|
5377
5376
|
return innerTextGetter.call(this);
|
|
5378
5377
|
}
|
|
5379
5378
|
|
|
5380
|
-
if (!
|
|
5379
|
+
if (!lwcRuntimeFlags.ENABLE_ELEMENT_PATCH) {
|
|
5381
5380
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
5382
5381
|
return getInnerText(this);
|
|
5383
5382
|
}
|
|
@@ -5407,11 +5406,11 @@
|
|
|
5407
5406
|
// As a setter, it removes the current node and replaces it with the given text.
|
|
5408
5407
|
defineProperty(HTMLElement.prototype, 'outerText', {
|
|
5409
5408
|
get: function get() {
|
|
5410
|
-
if (!
|
|
5409
|
+
if (!lwcRuntimeFlags.ENABLE_INNER_OUTER_TEXT_PATCH) {
|
|
5411
5410
|
return outerTextGetter.call(this);
|
|
5412
5411
|
}
|
|
5413
5412
|
|
|
5414
|
-
if (!
|
|
5413
|
+
if (!lwcRuntimeFlags.ENABLE_ELEMENT_PATCH) {
|
|
5415
5414
|
if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
|
|
5416
5415
|
return getInnerText(this);
|
|
5417
5416
|
}
|
|
@@ -5481,20 +5480,22 @@
|
|
|
5481
5480
|
},
|
|
5482
5481
|
configurable: true
|
|
5483
5482
|
});
|
|
5483
|
+
|
|
5484
|
+
function recursivelySetShadowResolver(node, fn) {
|
|
5485
|
+
node[KEY__SHADOW_RESOLVER] = fn;
|
|
5486
|
+
var childNodes = childNodesGetter.call(node);
|
|
5487
|
+
|
|
5488
|
+
for (var i = 0, n = childNodes.length; i < n; i++) {
|
|
5489
|
+
recursivelySetShadowResolver(childNodes[i], fn);
|
|
5490
|
+
}
|
|
5491
|
+
}
|
|
5492
|
+
|
|
5484
5493
|
defineProperty(Element.prototype, KEY__SHADOW_STATIC, {
|
|
5485
5494
|
set: function set(v) {
|
|
5486
5495
|
// Marking an element as static will propagate the shadow resolver to the children.
|
|
5487
|
-
var fn = this[KEY__SHADOW_RESOLVER];
|
|
5488
|
-
|
|
5489
5496
|
if (v) {
|
|
5490
|
-
var
|
|
5491
|
-
|
|
5492
|
-
}, false);
|
|
5493
|
-
var currentNode;
|
|
5494
|
-
|
|
5495
|
-
while (currentNode = treeWalker.nextNode()) {
|
|
5496
|
-
currentNode[KEY__SHADOW_RESOLVER] = fn;
|
|
5497
|
-
}
|
|
5497
|
+
var fn = this[KEY__SHADOW_RESOLVER];
|
|
5498
|
+
recursivelySetShadowResolver(this, fn);
|
|
5498
5499
|
}
|
|
5499
5500
|
|
|
5500
5501
|
this[KEY__SHADOW_STATIC_PRIVATE] = v;
|
|
@@ -5651,7 +5652,7 @@
|
|
|
5651
5652
|
window.addEventListener('test-dummy-flag', function () {
|
|
5652
5653
|
var hasFlag = false;
|
|
5653
5654
|
|
|
5654
|
-
if (
|
|
5655
|
+
if (lwcRuntimeFlags.DUMMY_TEST_FLAG) {
|
|
5655
5656
|
hasFlag = true;
|
|
5656
5657
|
}
|
|
5657
5658
|
|
|
@@ -5663,6 +5664,6 @@
|
|
|
5663
5664
|
}));
|
|
5664
5665
|
});
|
|
5665
5666
|
}
|
|
5666
|
-
/** version: 2.
|
|
5667
|
+
/** version: 2.23.1 */
|
|
5667
5668
|
|
|
5668
5669
|
}));
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
!function(e){"function"==typeof define&&define.amd?define(e):e()}((function(){"use strict";var e,t;function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function l(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}var a=Object.assign,i=Object.create,u=Object.defineProperties,c=Object.defineProperty,s=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,h=Object.hasOwnProperty,p=Object.setPrototypeOf,g=Array.prototype,m=g.filter,v=g.find,d=g.indexOf,b=g.map,y=g.push,E=g.reduce,w=g.reverse,T=g.slice,N=g.splice,L=g.forEach,M=String.prototype.charCodeAt;function C(e){return void 0===e}function S(e){return null===e}function O(e){return!0===e}function H(e){return!1===e}function A(e){return"function"==typeof e}function R(e){return"object"===o(e)}var _,$,P=function(){if("object"===("undefined"==typeof globalThis?"undefined":o(globalThis)))return globalThis;var 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}(),D="$shadowResolver$",I="$shadowToken$",B=Node,k=B.prototype,x=B.DOCUMENT_POSITION_CONTAINED_BY,F=B.DOCUMENT_POSITION_PRECEDING,W=B.DOCUMENT_POSITION_FOLLOWING,j=B.ELEMENT_NODE,U=B.TEXT_NODE,K=B.CDATA_SECTION_NODE,G=B.PROCESSING_INSTRUCTION_NODE,q=B.COMMENT_NODE,X=k.appendChild,Y=k.cloneNode,V=k.compareDocumentPosition,z=k.insertBefore,J=k.removeChild,Q=k.replaceChild,Z=k.hasChildNodes,ee=HTMLElement.prototype.contains,te=s(k,"firstChild").get,ne=s(k,"lastChild").get,re=s(k,"textContent").get,le=s(k,"parentNode").get,oe=s(k,"ownerDocument").get,ae=h.call(k,"parentElement")?s(k,"parentElement").get:s(HTMLElement.prototype,"parentElement").get,ie=s(k,"textContent").set,ue=h.call(k,"childNodes")?s(k,"childNodes").get:s(HTMLElement.prototype,"childNodes").get,ce=h.call(k,"isConnected")?s(k,"isConnected").get:function(){var e=oe.call(this);return null===e||0!=(V.call(e,this)&x)},se=Element.prototype,fe=se.getAttribute,he=se.getBoundingClientRect,pe=se.getElementsByTagName,ge=se.getElementsByTagNameNS,me=se.hasAttribute,ve=se.querySelector,de=se.querySelectorAll,be=se.removeAttribute,ye=se.setAttribute,Ee=h.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},we=s(Element.prototype,"childElementCount").get,Te=s(Element.prototype,"firstElementChild").get,Ne=s(Element.prototype,"lastElementChild").get,Le=s(HTMLElement.prototype,"innerText"),Me=Le?Le.get:null,Ce=Le?Le.set:null,Se=s(HTMLElement.prototype,"outerText"),Oe=Se?Se.get:null,He=Se?Se.set:null,Ae=h.call(Element.prototype,"innerHTML")?s(Element.prototype,"innerHTML"):s(HTMLElement.prototype,"innerHTML"),Re=Ae.get,_e=Ae.set,$e=h.call(Element.prototype,"outerHTML")?s(Element.prototype,"outerHTML"):s(HTMLElement.prototype,"outerHTML"),Pe=$e.get,De=$e.set,Ie=s(Element.prototype,"tagName").get,Be=s(HTMLElement.prototype,"tabIndex"),ke=Be.get,xe=Be.set,Fe=h.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,We=h.call(Element.prototype,"children")?s(Element.prototype,"children").get:s(HTMLElement.prototype,"children").get,je=HTMLElement.prototype.getElementsByClassName,Ue=h.call(Element.prototype,"shadowRoot")?s(Element.prototype,"shadowRoot").get:function(){return null},Ke=h.call(Element.prototype,"assignedSlot")?s(Element.prototype,"assignedSlot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(_=HTMLSlotElement.prototype.assignedNodes,$=HTMLSlotElement.prototype.assignedElements):(_=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},$=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var Ge=s(Event.prototype,"target").get,qe=s(Event.prototype,"currentTarget").get,Xe=s(FocusEvent.prototype,"relatedTarget").get,Ye=h.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},Ve=s(Document.prototype,"activeElement").get,ze=h.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,Je=h.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Qe=s(Document.prototype,"defaultView").get,Ze=Document.prototype,et=Ze.createTreeWalker,tt=Ze.querySelectorAll,nt=Ze.getElementById,rt=Ze.getElementsByClassName,lt=Ze.getElementsByTagName,ot=Ze.getElementsByTagNameNS,at=HTMLDocument.prototype.getElementsByName,it=window,ut=it.addEventListener,ct=it.removeEventListener,st=it.getComputedStyle,ft=it.getSelection,ht=MutationObserver,pt=ht.prototype.observe,gt=null;"undefined"!=typeof ShadowRoot&&(gt=ShadowRoot);var mt=!S(gt),vt=S(gt)?function(){return!1}:function(e){return e instanceof gt};var dt,bt=Document.prototype.createElement;function yt(e){var t=oe.call(e);return null===t?e:t}function Et(e){var t=yt(e),n=Qe.call(t);if(null===n)throw new TypeError;return n}function wt(e){if(C(dt)){var t=yt(e);dt=t.body&&"temporary-bypass"===fe.call(t.body,"data-global-patching-bypass")}return O(dt)}function Tt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=l((function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}));p(e,HTMLElement.constructor),p(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,c(Document.prototype,"createElement",{value:function(t,n){var r=bt.apply(this,T.call(arguments));return 4===t.length&&115===M.call(t,0)&&108===M.call(t,1)&&111===M.call(t,2)&&116===M.call(t,3)&&p(r,e.prototype),r}})}();var Nt="undefined"!=typeof EventTarget?EventTarget.prototype:B.prototype,Lt=Nt.addEventListener,Mt=Nt.dispatchEvent,Ct=Nt.removeEventListener,St="$$HostElementKey$$",Ot="$$ShadowedNodeKey$$";function Ht(e,t,n){var r=e,l=n.value;r[t]=l}function At(e){return e[St]}function Rt(e){for(var t,n=e;!S(n);){if(!C(t=At(n)))return t;n=le.call(n)}}function _t(e){return e[Ot]}function $t(e){return!C(At(e))}function Pt(e){for(var t=ae.call(e);!S(t)&&kt(t);)e=t,t=ae.call(e);return e}function Dt(e,t){for(var n=_t(e),r=t instanceof Element?t:ae.call(t);!S(r)&&r!==e;){var l=Rt(r),o=ae.call(r);if(l===n)return kt(r);if(o===e)return!1;if(S(o)||Rt(o)===l)r=o;else{if(!kt(o))return!1;if(!S(r=It(Pt(o)))){if(r===e)return!0;if(Rt(r)===n)return!0}}}return!1}function It(e){if(!(e instanceof B))return null;var t=Rt(e);if(C(t))return null;for(var n=e;!S(n)&&_t(n)!==t;)n=le.call(n);return S(n)?null:n}function Bt(e){return kt(e)&&$t(e)}function kt(e){return e instanceof HTMLSlotElement}function xt(e,t){var n=Rt(t);return C(n)||_t(e)===n}function Ft(e){var t=Qn(e);return Ut(t,Tt(ue.call(t)))}function Wt(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!xt(e,o)&&Dt(e,o)&&y.call(n,o)}return n}function jt(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!xt(e,l)&&Dt(e,l))return l}return null}function Ut(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];xt(e,o)&&y.call(n,o)}return n}function Kt(e,t){for(var n=0,r=t.length;n<r;n+=1)if(xt(e,t[n]))return t[n];return null}function Gt(e){if(!er(e)&&!kt(e))return Tt(ue.call(e));if(er(e)){var t=Tt(de.call(e,"slot")),n=Vn(Zn(e));return E.call(t,(function(e,t){return n===Vn(t)&&y.apply(e,qt(t)),e}),[])}var r=Tt(ue.call(e)),l=Vn(e);return m.call(r,(function(e){return l===Vn(e)}))}function qt(e){var t=It(e);if(S(t))return[];var n=Tt(ue.call(e));return m.call(n,(function(e){return!$t(e)||!xt(t,e)}))}var Xt=/[&\u00A0"]/g,Yt=/[&\u00A0<>]/g,Vt=String.prototype,zt=Vt.replace,Jt=Vt.toLowerCase;function Qt(e){switch(e){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case" ":return" ";default:return""}}function Zt(e){return zt.call(e,Xt,Qt)}var en=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),tn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function nn(e){switch(e.nodeType){case j:for(var t,n=e.attributes,r=Ie.call(e),l="<"+Jt.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+Zt(t.value)+'"';return l+=">",en.has(r)?l:l+function(e){for(var t="",n=Gt(e),r=0,l=n.length;r<l;r+=1)t+=nn(n[r]);return t}(e)+"</"+Jt.call(r)+">";case U:var a=e.data,i=e.parentNode;return i instanceof Element&&tn.has(Ie.call(i))?a:function(e){return zt.call(e,Yt,Qt)}(a);case K:return"<!CDATA[[".concat(e.data,"]]>");case G:return"<?".concat(e.target," ").concat(e.data,"?>");case q:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}function rn(e){if(e.nodeType===j){for(var t=Gt(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==q&&(n+=rn(o))}return n}return e.nodeValue}var ln=new WeakMap;function on(){throw new TypeError("Illegal constructor")}function an(e){var t=i(on.prototype);return ln.set(t,e),L.call(e,(function(e,n){c(t,n,{value:e,enumerable:!0,configurable:!0})})),t}on.prototype=i(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:on},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return ln.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){L.call(ln.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return b.call(ln.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return b.call(ln.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return ln.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=ln.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),p(on,NodeList);var un=function(e,t){for(var n;!C(n=e.host);){var r=n.getRootNode();if(r===t)return n;e=r}};function cn(e,t,n,r){var l=Je.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!C(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!S(l))for(var i=0;i<l.length;i++){var u=l[i];if(!Bt(u)){var c=u.getRootNode();if(-1===d.call(a,c)){var s=un(c,a[0]);C(s)||-1!==d.call(l,s)||-1!==d.call(o,s)||y.call(o,s)}else y.call(o,u)}}return o}var sn=new WeakMap;function fn(){throw new TypeError("Illegal constructor")}function hn(e){var t=i(fn.prototype);return sn.set(t,e),L.call(e,(function(e,n){c(t,n,{value:e,enumerable:!0,configurable:!0})})),t}fn.prototype=i(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:fn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return sn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=sn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===fe.call(l,"id")||e===fe.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),p(fn,HTMLCollection),P.lwcRuntimeFlags||Object.defineProperty(P,"lwcRuntimeFlags",{value:i(null)});var pn=P.lwcRuntimeFlags;function gn(e){return Bt(e)||er(e)}function mn(e,t){var n=It(e);if(t===n)return Zn(n);if(t instanceof Element){if(Rt(e)===Rt(t))return t;if(!S(n)&&kt(t)){var r=It(t);if(!S(r)&&xt(n,r))return r}}return null}function vn(){return On(this).length>0}function dn(){return On(this)[0]||null}function bn(){var e=On(this);return e[e.length-1]||null}function yn(){return rn(this)}function En(){var e=le.call(this);return S(e)?e:mn(this,e)}function wn(){var e=le.call(this);if(S(e))return null;var t=mn(this,e);return t instanceof Element?t:null}function Tn(e){return this===e?0:this.getRootNode()===e?10:At(this)!==At(e)?35:V.call(this,e)}function Nn(e){return null!=e&&At(this)===At(e)&&0!=(V.call(this,e)&x)}function Ln(e){var t=Y.call(this,!1);if(!e)return t;for(var n=On(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function Mn(){if(er(this)){var e=It(this);return an(S(e)?[]:Ut(e,Gt(this)))}return ue.call(this)}var Cn=B.prototype.getRootNode,Sn=C(Cn)?function(){for(var e,t=this;!S(e=le.call(t));)t=e;return t}:Cn;u(B.prototype,{firstChild:{get:function(){return gn(this)?dn.call(this):te.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return gn(this)?bn.call(this):ne.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return pn.ENABLE_NODE_PATCH?wt(this)?re.call(this):yn.call(this):$t(this)||er(this)?yn.call(this):re.call(this)},set:function(e){ie.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if($t(this))return En.call(this);var e=le.call(this);return!S(e)&&Bt(e)?It(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if($t(this))return wn.call(this);var e=ae.call(this);return!S(e)&&Bt(e)?It(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return gn(this)?Mn.call(this):ue.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return gn(this)?vn.call(this):Z.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return wt(this)?V.call(this,e):Tn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||(pn.ENABLE_NODE_PATCH?wt(this)?ee.call(this,e):Nn.call(this,e):null!=e&&($t(this)||er(this)?Nn.call(this,e):ee.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return pn.ENABLE_NODE_PATCH?O(e)?wt(this)?Y.call(this,e):Ln.call(this,e):Y.call(this,e):$t(this)||er(this)?Ln.call(this,e):Y.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return O(!C(e)&&!!e.composed)?Sn.call(this,e):S(n=It(t=this))?Sn.call(t):Zn(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return ce.call(this)}}});var On=function(e){return e.childNodes};h.call(HTMLElement.prototype,"contains")&&c(HTMLElement.prototype,"contains",s(B.prototype,"contains")),h.call(HTMLElement.prototype,"parentElement")&&c(HTMLElement.prototype,"parentElement",s(B.prototype,"parentElement"));var Hn=new WeakMap,An=new WeakMap;function Rn(e,t,n){if(t===n)return!0;var r=An.get(e);return C(r)&&(r=e.composedPath(),An.set(e,r)),r.includes(n)}function _n(e){if(!function(e){return A(e)||R(e)&&!S(e)&&A(e.handleEvent)}(e))return e;var t=Hn.get(e);return C(t)&&(t=function(t){var n=qe.call(t);if(Rn(t,In(t),n))return A(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Hn.set(e,t)),t}var $n=new WeakMap,Pn=new WeakMap;function Dn(e){var t=Pn.get(e);return C(t)&&(t=i(null),Pn.set(e,t)),t}function In(e){var t;return null!==(t=ar.get(e))&&void 0!==t?t:Ge.call(e)}var Bn=new WeakMap;function kn(e){if(!A(e))throw new TypeError;var t=Bn.get(e);return C(t)&&((t=function(t){var n=qe.call(t);vt(n)||(n=Zn(n)),Rn(t,In(t),n)&&e.call(n,t)}).placement=1,Bn.set(e,t)),t}var xn=new WeakMap;function Fn(e){if(!A(e))throw new TypeError;var t=xn.get(e);return C(t)&&((t=function(t){var n=qe.call(t);Rn(t,In(t),n)&&e.call(n,t)}).placement=0,xn.set(e,t)),t}function Wn(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=Dn(qe.call(e))[r];c(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),c(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var i=T.call(a);function u(n){L.call(i,(function(r){H(t)&&r.placement===n&&-1!==d.call(a,r)&&r.call(void 0,e)}))}$n.set(e,1),u(1),H(t)&&H(n)&&($n.set(e,0),u(0)),$n.set(e,2)}function jn(e,t,n){var r=Dn(e),l=r[t];C(l)&&(l=r[t]=[]),-1===d.call(l,n)&&(0===l.length&&Lt.call(e,t,Wn),y.call(l,n))}function Un(e,t,n){var r,l;C(l=Dn(e)[t])||-1===(r=d.call(l,n))||(N.call(l,r,1),0===l.length&&Ct.call(e,t,Wn))}function Kn(e,t,n){A(t)&&jn(this,e,Fn(t))}function Gn(e,t,n){A(t)&&Un(this,e,Fn(t))}var qn=new WeakMap,Xn=document.createDocumentFragment;function Yn(e){var t=qn.get(e);if(C(t))throw new TypeError;return t}function Vn(e){return e.$shadowResolver$}function zn(e,t){e.$shadowResolver$=t}function Jn(e){return Yn(e).delegatesFocus}function Qn(e){return Yn(e).host}function Zn(e){return Yn(e).shadowRoot}function er(e){var t=qn.get(e);return!C(t)&&e===t.host}function tr(e){var t=qn.get(e);return!C(t)&&e===t.shadowRoot}c(B.prototype,D,{set:function(e){var t,n;C(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,Ht(t,St,{value:n,configurable:!0}))},get:function(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),c(P,"$isNativeShadowRootDefined$",{value:mt});var nr=0;function rr(e,t){if(qn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=yt(e),o=Xn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};qn.set(o,a),qn.set(e,a);var i=function(){return o},u=i.nodeKey=nr++;return Ht(e,Ot,{value:u}),zn(o,i),p(o,ur.prototype),o}var lr={constructor:{writable:!0,configurable:!0,value:ur},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},or={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=Qn(this),t=yt(e),n=Ve.call(t);if(S(n))return n;if(0==(V.call(e,n)&x))return null;for(var r=n;!xt(e,r);)r=ae.call(r);return kt(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return Yn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return fr(this,yt(Qn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return cn(this,yt(Qn(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return Qn(this)}},mode:{configurable:!0,get:function(){return Yn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},ar=new WeakMap,ir={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return z.call(Qn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return J.call(Qn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return X.call(Qn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Q.call(Qn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){A(n)&&jn(Qn(e),t,kn(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return ar.set(e,this),Mt.apply(Qn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){A(n)&&Un(Qn(e),t,kn(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return Qn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return an(Ft(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=Qn(this);return this===e?0:this.contains(e)?20:V.call(t,e)&x?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=Qn(this);return 0!=(V.call(t,e)&x)&&xt(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return On(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=On(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return On(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return ce.call(Qn(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return Qn(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=On(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==q&&(t+=rn(l))}return t},set:function(e){var t=Qn(this);ie.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!C(e)&&O(e.composed)?Qn(this).getRootNode(e):this}}};function ur(){throw new TypeError("Illegal constructor")}function cr(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof B))return r;n=e.getRootNode()}for(var l,o=e;!S(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=S(a)?o.parentNode:a}else o=!tr(o)&&!vt(o)||!t&&o===n?o instanceof B?o.parentNode:null:o.host;return l=e instanceof Window?e.document:yt(e),r[r.length-1]===l&&r.push(window),r}
|
|
1
|
+
!function(e){"function"==typeof define&&define.amd?define(e):e()}((function(){"use strict";var e,t;function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function l(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}var a=Object.assign,i=Object.create,u=Object.defineProperties,c=Object.defineProperty,s=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,h=Object.hasOwnProperty,p=Object.setPrototypeOf,g=Array.prototype,m=g.filter,v=g.find,b=g.indexOf,d=g.map,y=g.push,E=g.reduce,w=g.reverse,T=g.slice,N=g.splice,L=g.forEach,M=String.prototype.charCodeAt;function C(e){return void 0===e}function S(e){return null===e}function O(e){return!0===e}function H(e){return!1===e}function A(e){return"function"==typeof e}function R(e){return"object"===o(e)}var $,_,P=function(){if("object"===("undefined"==typeof globalThis?"undefined":o(globalThis)))return globalThis;var 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}(),D="$shadowResolver$",B="$shadowToken$",I=Node,k=I.prototype,x=I.DOCUMENT_POSITION_CONTAINED_BY,F=I.DOCUMENT_POSITION_PRECEDING,j=I.DOCUMENT_POSITION_FOLLOWING,W=I.ELEMENT_NODE,U=I.TEXT_NODE,K=I.CDATA_SECTION_NODE,G=I.PROCESSING_INSTRUCTION_NODE,q=I.COMMENT_NODE,X=k.appendChild,Y=k.cloneNode,V=k.compareDocumentPosition,z=k.insertBefore,J=k.removeChild,Q=k.replaceChild,Z=k.hasChildNodes,ee=HTMLElement.prototype.contains,te=s(k,"firstChild").get,ne=s(k,"lastChild").get,re=s(k,"textContent").get,le=s(k,"parentNode").get,oe=s(k,"ownerDocument").get,ae=h.call(k,"parentElement")?s(k,"parentElement").get:s(HTMLElement.prototype,"parentElement").get,ie=s(k,"textContent").set,ue=h.call(k,"childNodes")?s(k,"childNodes").get:s(HTMLElement.prototype,"childNodes").get,ce=h.call(k,"isConnected")?s(k,"isConnected").get:function(){var e=oe.call(this);return null===e||0!=(V.call(e,this)&x)},se=Element.prototype,fe=se.getAttribute,he=se.getBoundingClientRect,pe=se.getElementsByTagName,ge=se.getElementsByTagNameNS,me=se.hasAttribute,ve=se.querySelector,be=se.querySelectorAll,de=se.removeAttribute,ye=se.setAttribute,Ee=h.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},we=s(Element.prototype,"childElementCount").get,Te=s(Element.prototype,"firstElementChild").get,Ne=s(Element.prototype,"lastElementChild").get,Le=s(HTMLElement.prototype,"innerText"),Me=Le?Le.get:null,Ce=Le?Le.set:null,Se=s(HTMLElement.prototype,"outerText"),Oe=Se?Se.get:null,He=Se?Se.set:null,Ae=h.call(Element.prototype,"innerHTML")?s(Element.prototype,"innerHTML"):s(HTMLElement.prototype,"innerHTML"),Re=Ae.get,$e=Ae.set,_e=h.call(Element.prototype,"outerHTML")?s(Element.prototype,"outerHTML"):s(HTMLElement.prototype,"outerHTML"),Pe=_e.get,De=_e.set,Be=s(Element.prototype,"tagName").get,Ie=s(HTMLElement.prototype,"tabIndex"),ke=Ie.get,xe=Ie.set,Fe=h.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,je=h.call(Element.prototype,"children")?s(Element.prototype,"children").get:s(HTMLElement.prototype,"children").get,We=HTMLElement.prototype.getElementsByClassName,Ue=h.call(Element.prototype,"shadowRoot")?s(Element.prototype,"shadowRoot").get:function(){return null},Ke=h.call(Element.prototype,"assignedSlot")?s(Element.prototype,"assignedSlot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?($=HTMLSlotElement.prototype.assignedNodes,_=HTMLSlotElement.prototype.assignedElements):($=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},_=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var Ge=s(Event.prototype,"target").get,qe=s(Event.prototype,"currentTarget").get,Xe=s(FocusEvent.prototype,"relatedTarget").get,Ye=h.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},Ve=s(Document.prototype,"activeElement").get,ze=h.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,Je=h.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Qe=s(Document.prototype,"defaultView").get,Ze=Document.prototype,et=Ze.querySelectorAll,tt=Ze.getElementById,nt=Ze.getElementsByClassName,rt=Ze.getElementsByTagName,lt=Ze.getElementsByTagNameNS,ot=HTMLDocument.prototype.getElementsByName,at=window,it=at.addEventListener,ut=at.removeEventListener,ct=at.getComputedStyle,st=at.getSelection,ft=MutationObserver,ht=ft.prototype.observe,pt=null;"undefined"!=typeof ShadowRoot&&(pt=ShadowRoot);var gt=!S(pt),mt=S(pt)?function(){return!1}:function(e){return e instanceof pt};var vt,bt=Document.prototype.createElement;function dt(e){var t=oe.call(e);return null===t?e:t}function yt(e){var t=dt(e),n=Qe.call(t);if(null===n)throw new TypeError;return n}function Et(e){if(C(vt)){var t=dt(e);vt=t.body&&"temporary-bypass"===fe.call(t.body,"data-global-patching-bypass")}return O(vt)}function wt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=l((function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}));p(e,HTMLElement.constructor),p(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,c(Document.prototype,"createElement",{value:function(t,n){var r=bt.apply(this,T.call(arguments));return 4===t.length&&115===M.call(t,0)&&108===M.call(t,1)&&111===M.call(t,2)&&116===M.call(t,3)&&p(r,e.prototype),r}})}();var Tt="undefined"!=typeof EventTarget?EventTarget.prototype:I.prototype,Nt=Tt.addEventListener,Lt=Tt.dispatchEvent,Mt=Tt.removeEventListener,Ct="$$HostElementKey$$",St="$$ShadowedNodeKey$$";function Ot(e,t,n){var r=e,l=n.value;r[t]=l}function Ht(e){return e[Ct]}function At(e){for(var t,n=e;!S(n);){if(!C(t=Ht(n)))return t;n=le.call(n)}}function Rt(e){return e[St]}function $t(e){return!C(Ht(e))}function _t(e){for(var t=ae.call(e);!S(t)&&It(t);)e=t,t=ae.call(e);return e}function Pt(e,t){for(var n=Rt(e),r=t instanceof Element?t:ae.call(t);!S(r)&&r!==e;){var l=At(r),o=ae.call(r);if(l===n)return It(r);if(o===e)return!1;if(S(o)||At(o)===l)r=o;else{if(!It(o))return!1;if(!S(r=Dt(_t(o)))){if(r===e)return!0;if(At(r)===n)return!0}}}return!1}function Dt(e){if(!(e instanceof I))return null;var t=At(e);if(C(t))return null;for(var n=e;!S(n)&&Rt(n)!==t;)n=le.call(n);return S(n)?null:n}function Bt(e){return It(e)&&$t(e)}function It(e){return e instanceof HTMLSlotElement}function kt(e,t){var n=At(t);return C(n)||Rt(e)===n}function xt(e){var t=Jn(e);return Wt(t,wt(ue.call(t)))}function Ft(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!kt(e,o)&&Pt(e,o)&&y.call(n,o)}return n}function jt(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!kt(e,l)&&Pt(e,l))return l}return null}function Wt(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];kt(e,o)&&y.call(n,o)}return n}function Ut(e,t){for(var n=0,r=t.length;n<r;n+=1)if(kt(e,t[n]))return t[n];return null}function Kt(e){if(!Zn(e)&&!It(e))return wt(ue.call(e));if(Zn(e)){var t=wt(be.call(e,"slot")),n=Yn(Qn(e));return E.call(t,(function(e,t){return n===Yn(t)&&y.apply(e,Gt(t)),e}),[])}var r=wt(ue.call(e)),l=Yn(e);return m.call(r,(function(e){return l===Yn(e)}))}function Gt(e){var t=Dt(e);if(S(t))return[];var n=wt(ue.call(e));return m.call(n,(function(e){return!$t(e)||!kt(t,e)}))}var qt=/[&\u00A0"]/g,Xt=/[&\u00A0<>]/g,Yt=String.prototype,Vt=Yt.replace,zt=Yt.toLowerCase;function Jt(e){switch(e){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case" ":return" ";default:return""}}function Qt(e){return Vt.call(e,qt,Jt)}var Zt=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),en=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function tn(e){switch(e.nodeType){case W:for(var t,n=e.attributes,r=Be.call(e),l="<"+zt.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+Qt(t.value)+'"';return l+=">",Zt.has(r)?l:l+function(e){for(var t="",n=Kt(e),r=0,l=n.length;r<l;r+=1)t+=tn(n[r]);return t}(e)+"</"+zt.call(r)+">";case U:var a=e.data,i=e.parentNode;return i instanceof Element&&en.has(Be.call(i))?a:function(e){return Vt.call(e,Xt,Jt)}(a);case K:return"<!CDATA[[".concat(e.data,"]]>");case G:return"<?".concat(e.target," ").concat(e.data,"?>");case q:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}function nn(e){if(e.nodeType===W){for(var t=Kt(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==q&&(n+=nn(o))}return n}return e.nodeValue}var rn=new WeakMap;function ln(){throw new TypeError("Illegal constructor")}function on(e){var t=i(ln.prototype);return rn.set(t,e),L.call(e,(function(e,n){c(t,n,{value:e,enumerable:!0,configurable:!0})})),t}ln.prototype=i(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:ln},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return rn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){L.call(rn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return d.call(rn.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return d.call(rn.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return rn.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=rn.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),p(ln,NodeList);var an=function(e,t){for(var n;!C(n=e.host);){var r=n.getRootNode();if(r===t)return n;e=r}};function un(e,t,n,r){var l=Je.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!C(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!S(l))for(var i=0;i<l.length;i++){var u=l[i];if(!Bt(u)){var c=u.getRootNode();if(-1===b.call(a,c)){var s=an(c,a[0]);C(s)||-1!==b.call(l,s)||-1!==b.call(o,s)||y.call(o,s)}else y.call(o,u)}}return o}var cn=new WeakMap;function sn(){throw new TypeError("Illegal constructor")}function fn(e){var t=i(sn.prototype);return cn.set(t,e),L.call(e,(function(e,n){c(t,n,{value:e,enumerable:!0,configurable:!0})})),t}sn.prototype=i(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:sn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return cn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=cn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===fe.call(l,"id")||e===fe.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),p(sn,HTMLCollection),P.lwcRuntimeFlags||Object.defineProperty(P,"lwcRuntimeFlags",{value:i(null)});var hn=P.lwcRuntimeFlags;function pn(e){return Bt(e)||Zn(e)}function gn(e,t){var n=Dt(e);if(t===n)return Qn(n);if(t instanceof Element){if(At(e)===At(t))return t;if(!S(n)&&It(t)){var r=Dt(t);if(!S(r)&&kt(n,r))return r}}return null}function mn(){return Sn(this).length>0}function vn(){return Sn(this)[0]||null}function bn(){var e=Sn(this);return e[e.length-1]||null}function dn(){return nn(this)}function yn(){var e=le.call(this);return S(e)?e:gn(this,e)}function En(){var e=le.call(this);if(S(e))return null;var t=gn(this,e);return t instanceof Element?t:null}function wn(e){return this===e?0:this.getRootNode()===e?10:Ht(this)!==Ht(e)?35:V.call(this,e)}function Tn(e){return null!=e&&Ht(this)===Ht(e)&&0!=(V.call(this,e)&x)}function Nn(e){var t=Y.call(this,!1);if(!e)return t;for(var n=Sn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function Ln(){if(Zn(this)){var e=Dt(this);return on(S(e)?[]:Wt(e,Kt(this)))}return ue.call(this)}var Mn=I.prototype.getRootNode,Cn=C(Mn)?function(){for(var e,t=this;!S(e=le.call(t));)t=e;return t}:Mn;u(I.prototype,{firstChild:{get:function(){return pn(this)?vn.call(this):te.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return pn(this)?bn.call(this):ne.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return hn.ENABLE_NODE_PATCH?Et(this)?re.call(this):dn.call(this):$t(this)||Zn(this)?dn.call(this):re.call(this)},set:function(e){ie.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if($t(this))return yn.call(this);var e=le.call(this);return!S(e)&&Bt(e)?Dt(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if($t(this))return En.call(this);var e=ae.call(this);return!S(e)&&Bt(e)?Dt(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return pn(this)?Ln.call(this):ue.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return pn(this)?mn.call(this):Z.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return Et(this)?V.call(this,e):wn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||(hn.ENABLE_NODE_PATCH?Et(this)?ee.call(this,e):Tn.call(this,e):null!=e&&($t(this)||Zn(this)?Tn.call(this,e):ee.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return hn.ENABLE_NODE_PATCH?O(e)?Et(this)?Y.call(this,e):Nn.call(this,e):Y.call(this,e):$t(this)||Zn(this)?Nn.call(this,e):Y.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return O(!C(e)&&!!e.composed)?Cn.call(this,e):S(n=Dt(t=this))?Cn.call(t):Qn(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return ce.call(this)}}});var Sn=function(e){return e.childNodes};h.call(HTMLElement.prototype,"contains")&&c(HTMLElement.prototype,"contains",s(I.prototype,"contains")),h.call(HTMLElement.prototype,"parentElement")&&c(HTMLElement.prototype,"parentElement",s(I.prototype,"parentElement"));var On=new WeakMap,Hn=new WeakMap;function An(e,t,n){if(t===n)return!0;var r=Hn.get(e);return C(r)&&(r=e.composedPath(),Hn.set(e,r)),r.includes(n)}function Rn(e){if(!function(e){return A(e)||R(e)&&!S(e)&&A(e.handleEvent)}(e))return e;var t=On.get(e);return C(t)&&(t=function(t){var n=qe.call(t);if(An(t,Dn(t),n))return A(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},On.set(e,t)),t}var $n=new WeakMap,_n=new WeakMap;function Pn(e){var t=_n.get(e);return C(t)&&(t=i(null),_n.set(e,t)),t}function Dn(e){var t;return null!==(t=or.get(e))&&void 0!==t?t:Ge.call(e)}var Bn=new WeakMap;function In(e){if(!A(e))throw new TypeError;var t=Bn.get(e);return C(t)&&((t=function(t){var n=qe.call(t);mt(n)||(n=Qn(n)),An(t,Dn(t),n)&&e.call(n,t)}).placement=1,Bn.set(e,t)),t}var kn=new WeakMap;function xn(e){if(!A(e))throw new TypeError;var t=kn.get(e);return C(t)&&((t=function(t){var n=qe.call(t);An(t,Dn(t),n)&&e.call(n,t)}).placement=0,kn.set(e,t)),t}function Fn(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=Pn(qe.call(e))[r];c(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),c(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var i=T.call(a);function u(n){L.call(i,(function(r){H(t)&&r.placement===n&&-1!==b.call(a,r)&&r.call(void 0,e)}))}$n.set(e,1),u(1),H(t)&&H(n)&&($n.set(e,0),u(0)),$n.set(e,2)}function jn(e,t,n){var r=Pn(e),l=r[t];C(l)&&(l=r[t]=[]),-1===b.call(l,n)&&(0===l.length&&Nt.call(e,t,Fn),y.call(l,n))}function Wn(e,t,n){var r,l;C(l=Pn(e)[t])||-1===(r=b.call(l,n))||(N.call(l,r,1),0===l.length&&Mt.call(e,t,Fn))}function Un(e,t,n){A(t)&&jn(this,e,xn(t))}function Kn(e,t,n){A(t)&&Wn(this,e,xn(t))}var Gn=new WeakMap,qn=document.createDocumentFragment;function Xn(e){var t=Gn.get(e);if(C(t))throw new TypeError;return t}function Yn(e){return e.$shadowResolver$}function Vn(e,t){e.$shadowResolver$=t}function zn(e){return Xn(e).delegatesFocus}function Jn(e){return Xn(e).host}function Qn(e){return Xn(e).shadowRoot}function Zn(e){var t=Gn.get(e);return!C(t)&&e===t.host}function er(e){var t=Gn.get(e);return!C(t)&&e===t.shadowRoot}c(I.prototype,D,{set:function(e){var t,n;C(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,Ot(t,Ct,{value:n,configurable:!0}))},get:function(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),c(P,"$isNativeShadowRootDefined$",{value:gt});var tr=0;function nr(e,t){if(Gn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=dt(e),o=qn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Gn.set(o,a),Gn.set(e,a);var i=function(){return o},u=i.nodeKey=tr++;return Ot(e,St,{value:u}),Vn(o,i),p(o,ir.prototype),o}var rr={constructor:{writable:!0,configurable:!0,value:ir},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},lr={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=Jn(this),t=dt(e),n=Ve.call(t);if(S(n))return n;if(0==(V.call(e,n)&x))return null;for(var r=n;!kt(e,r);)r=ae.call(r);return It(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return Xn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return sr(this,dt(Jn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return un(this,dt(Jn(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return Jn(this)}},mode:{configurable:!0,get:function(){return Xn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},or=new WeakMap,ar={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return z.call(Jn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return J.call(Jn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return X.call(Jn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Q.call(Jn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){A(n)&&jn(Jn(e),t,In(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return or.set(e,this),Lt.apply(Jn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){A(n)&&Wn(Jn(e),t,In(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return Jn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return on(xt(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=Jn(this);return this===e?0:this.contains(e)?20:V.call(t,e)&x?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=Jn(this);return 0!=(V.call(t,e)&x)&&kt(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return Sn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=Sn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return Sn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return ce.call(Jn(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return Jn(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=Sn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==q&&(t+=nn(l))}return t},set:function(e){var t=Jn(this);ie.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!C(e)&&O(e.composed)?Jn(this).getRootNode(e):this}}};function ir(){throw new TypeError("Illegal constructor")}function ur(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof I))return r;n=e.getRootNode()}for(var l,o=e;!S(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=S(a)?o.parentNode:a}else o=!er(o)&&!mt(o)||!t&&o===n?o instanceof I?o.parentNode:null:o.host;return l=e instanceof Window?e.document:dt(e),r[r.length-1]===l&&r.push(window),r}
|
|
2
2
|
/**
|
|
3
3
|
@license
|
|
4
4
|
Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
8
8
|
Code distributed by Google as part of the polymer project is also
|
|
9
9
|
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
10
|
-
*/function sr(e,t){if(S(e))return null;for(var n,r,l,o,a=cr(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!tr(l)||!C(o)&&o>-1)return n;return null}function fr(e,t,n,r){var l=ze.call(t,n,r);return S(l)?l:sr(e,cr(l,!0))}a(lr,ir,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return hn(m.call(Ft(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,Kt(n=Qn(this),Tt(de.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return an((t=e,Ut(n=Qn(this),Tt(de.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=On(this),t="",n=0,r=e.length;n<r;n+=1)t+=nn(e[n]);return t},set:function(e){var t=Qn(this);_e.call(t,e)}}},or),ur.prototype=i(DocumentFragment.prototype,lr),c(ur,Symbol.hasInstance,{value:function(e){return R(e)&&!S(e)&&(vt(e)||f(e)===ur.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return fr(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return cn(this,this,e,t)},c(Document.prototype,"activeElement",{get:function(){var e=Ve.call(this);if(S(e))return e;for(;!C(At(e));)if(S(e=ae.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),c(Document.prototype,"getElementById",{value:function(){var e=nt.apply(this,T.call(arguments));return S(e)?null:C(At(e))||wt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"querySelector",{value:function(){var e=Tt(tt.apply(this,T.call(arguments))),t=v.call(e,(function(e){return C(At(e))||wt(e)}));return C(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"querySelectorAll",{value:function(){var e=Tt(tt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(At(e))||wt(e)}));return an(t)},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"getElementsByClassName",{value:function(){var e=Tt(rt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(At(e))||wt(e)}));return hn(t)},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"getElementsByTagName",{value:function(){var e=Tt(lt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(At(e))||wt(e)}));return hn(t)},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=Tt(ot.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(At(e))||wt(e)}));return hn(t)},writable:!0,enumerable:!0,configurable:!0}),c(s(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=Tt(at.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(At(e))||wt(e)}));return an(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:ur,configurable:!0,writable:!0});var hr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var pr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function gr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!hr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!hr.get.call(e)})()&&(HTMLElement.prototype.click=function(){Lt.call(this,"click",gr);try{pr.value.call(this)}finally{Ct.call(this,"click",gr)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=a(i(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var mr,vr,dr=CustomEvent;function br(e,t){var n=new dr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(br.prototype=dr.prototype,window.CustomEvent=br,"undefined"!=typeof ClipboardEvent){var yr=a(i(null),{copy:1,cut:1,paste:1});u(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===yr[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&(mr=s(HTMLIFrameElement.prototype,"contentWindow"),vr=mr.get,mr.get=function(){var e,t=vr.call(this);return S(t)||C(At(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},c(HTMLIFrameElement.prototype,"contentWindow",mr));var Er=MutationObserver,wr=Er.prototype,Tr=wr.disconnect,Nr=wr.observe,Lr=wr.takeRecords,Mr="$$lwcObserverCallbackWrapper$$",Cr=new WeakMap;function Sr(e){return e.$$lwcNodeObservers$$}function Or(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,o=i(MutationRecord.prototype);return u(o,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),o}function Hr(e,t){for(var n=t;!S(n);){var r=Sr(n);if(!C(r)&&(r[0]===e||-1!==d.call(r,e)))return!0;n=n.parentNode}return!1}function Ar(e,t){return E.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||C(_t(r)))Hr(t,r)&&y.call(e,n);else if(l.length>0){var a=l[0];if(Hr(t,a)){var i=Sr(r);!i||i[0]!==t&&-1===d.call(i,t)?y.call(e,Or(n)):y.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Rt(r)===Rt(c)&&Hr(t,r))y.call(e,n);else if(u){var s=Sr(u);!s||s[0]!==t&&-1===d.call(s,t)||y.call(e,Or(n))}}return e}),[])}function Rr(e){var t=function(e){var t=e[Mr];return C(t)&&(t=e[Mr]=function(t,n){var r=Ar(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new Er(t)}function _r(e,t,n){if(arguments.length>1){var r=T.call(arguments);return r[1]=_n(r[1]),ut.apply(this,r)}return ut.apply(this,arguments)}function $r(e,t,n){if(arguments.length>1){var r=T.call(arguments);r[1]=_n(r[1]),ct.apply(this,r)}ct.apply(this,arguments)}function Pr(){var e=Ge.call(this);if(!(e instanceof B))return e;var t=yt(e),n=cr(e,this.composed),r=qe.call(this);if(!(r instanceof B))return S(r)&&C(At(e))?e:sr(t,n);if(r===t||r===t.body)return C(At(e))?e:sr(t,n);var l=r,o=n;er(r)&&(1===$n.get(this)&&(l=Zn(r)));return er(e)&&ar.has(this)&&(o=cr(Zn(e),this.composed)),sr(l,o)}function Dr(){var e=Ge.call(this);if(!(e instanceof B))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,qn.has(t));if(n&&!r)return Ye.call(this);if(S(qe.call(this)))return[];var l=e;return er(e)&&ar.has(this)&&(l=Zn(e)),cr(l,this.composed)}function Ir(e){var t=s(e.prototype,"relatedTarget").get;c(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(S(e))return null;if(!(e instanceof B&&$t(e)))return e;var n=qe.call(this);return S(n)&&(n=yt(e)),sr(n,cr(e,!0))},enumerable:!0,configurable:!0})}Rr.prototype=Er.prototype,Rr.prototype.disconnect=function(){var e=this;Tr.call(this);var t=Cr.get(this);C(t)||(L.call(t,(function(t){var n=t.$$lwcNodeObservers$$;if(!C(n)){var r=d.call(n,e);-1!==r&&N.call(n,r,1)}})),t.length=0)},Rr.prototype.observe=function(e,t){var n,r=Sr(e);if(C(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===d.call(r,this)&&y.call(r,this),tr(e)&&(e=e.host),Cr.has(this)){var l=Cr.get(this);-1===d.call(l,e)&&y.call(l,e)}else Cr.set(this,[e]);return Nr.call(this,e,t)},Rr.prototype.takeRecords=function(){return Ar(Lr.call(this),this)},c(window,"MutationObserver",{value:Rr,configurable:!0,writable:!0}),u(Nt,{addEventListener:{value:function(e,t,n){if(er(this))return Kn.apply(this,arguments);if(arguments.length<2){var r=T.call(arguments);return r.length>1&&(r[1]=_n(r[1])),Lt.apply(this,r)}var l=_n(t);return Lt.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(er(this))return Gn.apply(this,arguments);var r=T.call(arguments);arguments.length>1&&(r[1]=_n(r[1])),Ct.apply(this,r),Ct.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&u(Window.prototype,{addEventListener:{value:_r,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:$r,enumerable:!0,writable:!0,configurable:!0}}),u(Event.prototype,{target:{get:Pr,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=qe.call(this);return S(e)?null:1===$n.get(this)?Zn(e):e},enumerable:!0,configurable:!0},composedPath:{value:Dr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Pr,enumerable:!0,configurable:!0},path:{get:Dr,enumerable:!0,configurable:!0}}),Ir(FocusEvent),Ir(MouseEvent);var Br,kr=h.call(Text.prototype,"assignedSlot")?s(Text.prototype,"assignedSlot").get:function(){return null},xr={childList:!0},Fr=new WeakMap;function Wr(e){var t=Tt(ue.call(e));return E.call(t,(function(e,t){return t instanceof Element&&kt(t)?y.apply(e,Wr(t)):y.call(e,t),e}),[])}function jr(){var e=le.call(this);if(e instanceof Element){var t=Ue.call(e);if(vt(t))return this instanceof Text?kr.call(this):Ke.call(this)}return!S(e)&&kt(e)&&At(e)!==At(this)?e:null}function Ur(e,t){var n,r=At(e);if(C(r))n=e instanceof HTMLBodyElement?m.call(t,(function(t){return C(At(t))||wt(e)})):T.call(t);else if(er(e)){var l=It(e);n=S(l)?[]:_t(e)?Wt(e,t):Ut(l,t)}else n=m.call(t,(function(e){return Rt(e)===r}));return n}function Kr(){for(var e=On(this),t="",n=0,r=e.length;n<r;n+=1)t+=nn(e[n]);return t}function Gr(){return nn(this)}function qr(){var e=It(this),t=S(e)?[]:Ut(e,Gt(this));return hn(m.call(t,(function(e){return e instanceof Element})))}function Xr(){return this.children.length}function Yr(){return this.children[0]||null}function Vr(){var e=this.children;return e.item(e.length-1)||null}function zr(e,t,n){var r;if(er(e)){var l=It(e);r=S(l)?[]:_t(e)?Wt(e,t):Ut(l,t)}else if($t(e)){var o=At(e);if(C(o))if(1===n){var a=Rt(e);r=m.call(t,(function(e){return Rt(e)===a}))}else r=T.call(t);else r=m.call(t,(function(e){return Rt(e)===o}))}else r=e instanceof HTMLBodyElement||1===n?m.call(t,(function(t){return C(At(t))||wt(e)})):T.call(t);return r}function Jr(e){var t=Et(e);return st.call(t,e)}function Qr(e){var t=Et(e);return ft.call(t)}function Zr(e){return"visible"===e.visibility&&"none"!==e.display}u(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Fr.get(this)||(Fr.set(this,!0),Br||(Br=new ht((function(e){var t=[];L.call(e,(function(e){var n=e.target;-1===d.call(t,n)&&(y.call(t,n),Mt.call(n,new CustomEvent("slotchange")))}))}))),pt.call(Br,this,xr))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if($t(this)){var t=!C(e)&&O(e.flatten),n=t?Wr(this):qt(this);return m.call(n,(function(e){return e instanceof Element}))}return $.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if($t(this)){var t=!C(e)&&O(e.flatten);return t?Wr(this):qt(this)}return _.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=fe.call(this,"name");return S(e)?"":e},set:function(e){ye.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if($t(this)){var e=It(this);return an(S(e)?[]:Ut(e,Gt(this)))}return ue.call(this)},enumerable:!0,configurable:!0}}),u(Text.prototype,{assignedSlot:{get:jr,enumerable:!0,configurable:!0}}),u(Element.prototype,{innerHTML:{get:function(){return pn.ENABLE_ELEMENT_PATCH?wt(this)?Re.call(this):Kr.call(this):$t(this)||er(this)?Kr.call(this):Re.call(this)},set:function(e){_e.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return pn.ENABLE_ELEMENT_PATCH?wt(this)?Pe.call(this):Gr.call(this):$t(this)||er(this)?Gr.call(this):Pe.call(this)},set:function(e){De.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?rr(this,e):Ee.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(er(this)){var e=Zn(this);if("open"===e.mode)return e}return Ue.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return gn(this)?qr.call(this):We.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return gn(this)?Xr.call(this):we.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return gn(this)?Yr.call(this):Te.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return gn(this)?Vr.call(this):Ne.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:jr,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"innerHTML")&&c(HTMLElement.prototype,"innerHTML",s(Element.prototype,"innerHTML")),h.call(HTMLElement.prototype,"outerHTML")&&c(HTMLElement.prototype,"outerHTML",s(Element.prototype,"outerHTML")),h.call(HTMLElement.prototype,"children")&&c(HTMLElement.prototype,"children",s(Element.prototype,"children")),u(Element.prototype,{querySelector:{value:function(){var e=this,t=Tt(de.apply(this,T.call(arguments)));if(er(this)){var n=It(this);return S(n)?null:_t(this)?jt(this,t):Kt(n,t)}if($t(this)){var r=At(this);if(C(r)){if(!pn.ENABLE_NODE_LIST_PATCH)return 0===t.length?null:t[0];var l=Rt(this),o=v.call(t,(function(e){return Rt(e)===l}));return C(o)?null:o}var a=v.call(t,(function(e){return Rt(e)===r}));return C(a)?null:a}if(!(pn.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){var i=t[0];return C(i)?null:i}var u=v.call(t,(function(t){return C(At(t))||wt(e)}));return C(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=Tt(de.apply(this,T.call(arguments)));if(!pn.ENABLE_NODE_LIST_PATCH){var t=zr(this,e,0);return an(t)}return an(zr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),u(Element.prototype,{getElementsByClassName:{value:function(){var e=Tt(je.apply(this,T.call(arguments)));if(!pn.ENABLE_HTML_COLLECTIONS_PATCH)return hn(Ur(this,e));var t=zr(this,e,1);return hn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=Tt(pe.apply(this,T.call(arguments)));if(!pn.ENABLE_HTML_COLLECTIONS_PATCH)return hn(Ur(this,e));var t=zr(this,e,1);return hn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=Tt(ge.apply(this,T.call(arguments)));if(!pn.ENABLE_HTML_COLLECTIONS_PATCH)return hn(Ur(this,e));var t=zr(this,e,1);return hn(t)},writable:!0,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"getElementsByClassName")&&c(HTMLElement.prototype,"getElementsByClassName",s(Element.prototype,"getElementsByClassName"));function el(e){var t=[];if(function(e){return e.nodeType===j}(e)){var n=e.tagName,r=Jr(e);if("OPTION"===n)return[1,Me.call(e),1];if("TEXTAREA"===n)return[];for(var l=e.childNodes,o=0,a=l.length;o<a;o++)y.apply(t,el(l[o]));if(!Zr(r))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");var i=r.display;"table-cell"===i&&t.push("\t"),"table-row"===i&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==i&&"table-caption"!==i&&"flex"!==i&&"table"!==i||(t.unshift(1),t.push(1))}else(function(e){return e.nodeType===U})(e)&&t.push(function(e){var t=Qr(e);if(null===t)return e.textContent||"";var n=document.createRange();n.selectNodeContents(e);var r=n.getBoundingClientRect();return r.height<=0||r.width<=0?"":(t.removeAllRanges(),t.addRange(n),t.toString()||e.textContent||"")}(e));return t}function tl(e){if(!Zr(Jr(e)))return rn(e)||"";for(var t=function(e){var t=Et(e),n=Qr(e);if(null===n)return null;for(var r=[],l=0;l<n.rangeCount;l++)r.push(n.getRangeAt(l));var o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:r};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],r=e.childNodes,l=0,o=r.length;l<o;l++)y.apply(n,el(r[l]));!function(e){if(null!==e){var t=e.element,n=e.onselect,r=e.onselectstart,l=e.onselectionchange,o=e.ranges,a=Et(t),i=Qr(t);i.removeAllRanges();for(var u=0;u<o.length;u++)i.addRange(o[u]);a.onselect=n,a.onselectstart=r,a.onselectionchange=l}}(t);for(var a="",i=0,u=0,c=n.length;u<c;u++){var s=n[u];if("string"==typeof s){if(i>0){for(var f=0;f<i;f++)a+="\n";i=0}s.length>0&&(a+=s)}else{if(0==a.length)continue;s>i&&(i=s)}}return a}var nl="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",rl=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function ll(e){return e.filter((function(e){return me.call(e,"tabindex")?"0"===fe.call(e,"tabindex"):!rl.has(Ie.call(e))||!me.call(e,"disabled")}))}var ol=new WeakMap;function al(e){return(!er(e)||!Jn(e))&&(Fe.call(e,nl)&&function(e){var t=he.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function il(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=Tt(de.call(this,nl)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=ve.call(this,nl);S(a)||a.focus.apply(a,arguments)}}function ul(e){var t=yt(e),n=ll(Tt(tt.call(t,nl))),r=ll(Tt(de.call(e,nl))),l=r[0],o=r[r.length-1],a=d.call(n,e),i=a>-1?a:d.call(n,l),u=0===r.length?i+1:d.call(n,o)+1;return{prev:T.call(n,0,i),inner:r,next:T.call(n,u)}}function cl(e,t){var n=V.call(e,t);return n&x?0:n&F?1:n&W?2:-1}function sl(e){e.preventDefault(),e.stopPropagation()}function fl(e,t){ut.call(e,"focusin",sl,!0),ut.call(e,"focusout",sl,!0),t(),ct.call(e,"focusin",sl,!0),ct.call(e,"focusout",sl,!0)}function hl(e,t,n){var r=Et(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(yl(t.getRootNode(),l))return l}return null}(e,n);S(l)?fl(r,(function(){t.blur()})):fl(r,(function(){l.focus()}))}var pl=!1;function gl(){pl=!0}function ml(){pl=!1}function vl(){return!pl}function dl(e){if(!pl){var t=qe.call(e),n=Ge.call(e);if(t===n){var r=Xe.call(e);if(!S(r)){var l=ul(t);if(1===cl(t,r)){var o=yl.bind(null,t.getRootNode()),a=v.call(l.inner,o);if(C(a))hl(l.next,n,r);else fl(Et(a),(function(){a.focus()}))}else t===n&&hl(w.call(l.prev),n,r)}}}}function bl(e){if(!pl){var t=Xe.call(e);if(!S(t)){var n=qe.call(e),r=ul(n);if(-1===d.call(r.inner,t)){var l=Ge.call(e),o=cl(n,t);1===o&&hl(r.next,l,t),2===o&&hl(w.call(r.prev),l,t)}}}}function yl(e,t){if(!al(t))return!1;for(var n=yt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===fe.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function El(e){Ct.call(e,"focusin",dl,!0)}function wl(e){var t=yt(e);ol.get(t)||(ol.set(t,!0),Lt.call(t,"mousedown",gl,!0),Lt.call(t,"mouseup",(function(){setTimeout(ml)}),!0),Lt.call(t,"dragstart",ml,!0))}function Tl(e){Ct.call(e,"focusin",bl,!0)}var Nl=HTMLElement.prototype,Ll=Nl.blur,Ml=Nl.focus;function Cl(){return Jn(this)&&H(me.call(this,"tabindex"))?0:ke.call(this)}function Sl(e){var t=Jn(this),n=ke.call(this),r=me.call(this,"tabindex");xe.call(this,e);var l,o=ke.call(this),a=me.call(this,"tabindex"),i=n!==o;(r&&(i||H(a))&&(-1===n&&Tl(this),0===n&&t&&El(this)),H(a))||(r&&a&&H(i)||(-1===o&&(wl(l=this),El(l),Lt.call(l,"focusin",bl,!0)),0===o&&t&&function(e){wl(e),Tl(e),Lt.call(e,"focusin",dl,!0)}(this)))}function Ol(){if(Jn(this)){var e=(n=yt(t=this),S(r=Ve.call(n))||0!=(V.call(t,r)&x)?r:null);if(!S(e))return void e.blur()}var t,n,r;return Ll.call(this)}function Hl(){var e=vl();e&&gl(),er(this)&&Jn(this)?il.call(this):(Ml.apply(this,arguments),e&&ml())}u(HTMLElement.prototype,{tabIndex:{get:function(){return er(this)?Cl.call(this):ke.call(this)},set:function(e){return er(this)?Sl.call(this,e):xe.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(er(this))return Ol.call(this);Ll.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Hl.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Me&&null!==Ce&&c(HTMLElement.prototype,"innerText",{get:function(){return pn.ENABLE_INNER_OUTER_TEXT_PATCH?pn.ENABLE_ELEMENT_PATCH?wt(this)?Me.call(this):tl(this):$t(this)||er(this)?tl(this):Me.call(this):Me.call(this)},set:function(e){Ce.call(this,e)},enumerable:!0,configurable:!0}),null!==Oe&&null!==He&&c(HTMLElement.prototype,"outerText",{get:function(){return pn.ENABLE_INNER_OUTER_TEXT_PATCH?pn.ENABLE_ELEMENT_PATCH?wt(this)?Oe.call(this):tl(this):$t(this)||er(this)?tl(this):Oe.call(this):Oe.call(this)},set:function(e){He.call(this,e)},enumerable:!0,configurable:!0}),c(Element.prototype,I,{set:function(e){var t=this.$$ShadowTokenKey$$;C(t)||t===e||be.call(this,t),C(e)||ye.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0}),c(Element.prototype,"$shadowStaticNode$",{set:function(e){var t=this.$shadowResolver$;if(e)for(var n,r=et.call(yt(this),this,NodeFilter.SHOW_ELEMENT|NodeFilter.SHOW_COMMENT|NodeFilter.SHOW_TEXT,(function(){return NodeFilter.FILTER_ACCEPT}),!1);n=r.nextNode();)n.$shadowResolver$=t;this.$shadowStaticNodeKey$=e},get:function(){return this.$shadowStaticNodeKey$},configurable:!0});var Al,Rl=function(){},_l={childList:!0};function $l(e,t,n){var r=Vn(e);if(r!==t&&(zn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),er(e))return;C(r)&&pt.call(Al,e,_l);for(var l=ue.call(e),o=0,a=l.length;o<a;o+=1)$l(l[o],t,n)}}function Pl(e){if(C(Al)&&(Al=new ht((function(e){L.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Vn(t),o=function(e){return e.$shadowToken$}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];V.call(t,u)&B.DOCUMENT_POSITION_CONTAINED_BY||$l(u,Rl,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];V.call(t,f)&B.DOCUMENT_POSITION_CONTAINED_BY&&$l(f,l,o)}}))}))),C(Vn(e)))throw new Error("Invalid Element");pt.call(Al,e,_l)}c(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,O(e)&&Pl(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}));
|
|
10
|
+
*/function cr(e,t){if(S(e))return null;for(var n,r,l,o,a=ur(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!er(l)||!C(o)&&o>-1)return n;return null}function sr(e,t,n,r){var l=ze.call(t,n,r);return S(l)?l:cr(e,ur(l,!0))}a(rr,ar,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return fn(m.call(xt(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,Ut(n=Jn(this),wt(be.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return on((t=e,Wt(n=Jn(this),wt(be.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=Sn(this),t="",n=0,r=e.length;n<r;n+=1)t+=tn(e[n]);return t},set:function(e){var t=Jn(this);$e.call(t,e)}}},lr),ir.prototype=i(DocumentFragment.prototype,rr),c(ir,Symbol.hasInstance,{value:function(e){return R(e)&&!S(e)&&(mt(e)||f(e)===ir.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return sr(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return un(this,this,e,t)},c(Document.prototype,"activeElement",{get:function(){var e=Ve.call(this);if(S(e))return e;for(;!C(Ht(e));)if(S(e=ae.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),c(Document.prototype,"getElementById",{value:function(){var e=tt.apply(this,T.call(arguments));return S(e)?null:C(Ht(e))||Et(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"querySelector",{value:function(){var e=wt(et.apply(this,T.call(arguments))),t=v.call(e,(function(e){return C(Ht(e))||Et(e)}));return C(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"querySelectorAll",{value:function(){var e=wt(et.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Ht(e))||Et(e)}));return on(t)},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"getElementsByClassName",{value:function(){var e=wt(nt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Ht(e))||Et(e)}));return fn(t)},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"getElementsByTagName",{value:function(){var e=wt(rt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Ht(e))||Et(e)}));return fn(t)},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=wt(lt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Ht(e))||Et(e)}));return fn(t)},writable:!0,enumerable:!0,configurable:!0}),c(s(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=wt(ot.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Ht(e))||Et(e)}));return on(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:ir,configurable:!0,writable:!0});var fr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var hr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function pr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!fr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!fr.get.call(e)})()&&(HTMLElement.prototype.click=function(){Nt.call(this,"click",pr);try{hr.value.call(this)}finally{Mt.call(this,"click",pr)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=a(i(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var gr,mr,vr=CustomEvent;function br(e,t){var n=new vr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(br.prototype=vr.prototype,window.CustomEvent=br,"undefined"!=typeof ClipboardEvent){var dr=a(i(null),{copy:1,cut:1,paste:1});u(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===dr[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&(gr=s(HTMLIFrameElement.prototype,"contentWindow"),mr=gr.get,gr.get=function(){var e,t=mr.call(this);return S(t)||C(Ht(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},c(HTMLIFrameElement.prototype,"contentWindow",gr));var yr=MutationObserver,Er=yr.prototype,wr=Er.disconnect,Tr=Er.observe,Nr=Er.takeRecords,Lr="$$lwcObserverCallbackWrapper$$",Mr=new WeakMap;function Cr(e){return e.$$lwcNodeObservers$$}function Sr(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,o=i(MutationRecord.prototype);return u(o,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),o}function Or(e,t){for(var n=t;!S(n);){var r=Cr(n);if(!C(r)&&(r[0]===e||-1!==b.call(r,e)))return!0;n=n.parentNode}return!1}function Hr(e,t){return E.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||C(Rt(r)))Or(t,r)&&y.call(e,n);else if(l.length>0){var a=l[0];if(Or(t,a)){var i=Cr(r);!i||i[0]!==t&&-1===b.call(i,t)?y.call(e,Sr(n)):y.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(At(r)===At(c)&&Or(t,r))y.call(e,n);else if(u){var s=Cr(u);!s||s[0]!==t&&-1===b.call(s,t)||y.call(e,Sr(n))}}return e}),[])}function Ar(e){var t=function(e){var t=e[Lr];return C(t)&&(t=e[Lr]=function(t,n){var r=Hr(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new yr(t)}function Rr(e,t,n){if(arguments.length>1){var r=T.call(arguments);return r[1]=Rn(r[1]),it.apply(this,r)}return it.apply(this,arguments)}function $r(e,t,n){if(arguments.length>1){var r=T.call(arguments);r[1]=Rn(r[1]),ut.apply(this,r)}ut.apply(this,arguments)}function _r(){var e=Ge.call(this);if(!(e instanceof I))return e;var t=dt(e),n=ur(e,this.composed),r=qe.call(this);if(!(r instanceof I))return S(r)&&C(Ht(e))?e:cr(t,n);if(r===t||r===t.body)return C(Ht(e))?e:cr(t,n);var l=r,o=n;Zn(r)&&(1===$n.get(this)&&(l=Qn(r)));return Zn(e)&&or.has(this)&&(o=ur(Qn(e),this.composed)),cr(l,o)}function Pr(){var e=Ge.call(this);if(!(e instanceof I))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Gn.has(t));if(n&&!r)return Ye.call(this);if(S(qe.call(this)))return[];var l=e;return Zn(e)&&or.has(this)&&(l=Qn(e)),ur(l,this.composed)}function Dr(e){var t=s(e.prototype,"relatedTarget").get;c(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(S(e))return null;if(!(e instanceof I&&$t(e)))return e;var n=qe.call(this);return S(n)&&(n=dt(e)),cr(n,ur(e,!0))},enumerable:!0,configurable:!0})}Ar.prototype=yr.prototype,Ar.prototype.disconnect=function(){var e=this;wr.call(this);var t=Mr.get(this);C(t)||(L.call(t,(function(t){var n=t.$$lwcNodeObservers$$;if(!C(n)){var r=b.call(n,e);-1!==r&&N.call(n,r,1)}})),t.length=0)},Ar.prototype.observe=function(e,t){var n,r=Cr(e);if(C(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===b.call(r,this)&&y.call(r,this),er(e)&&(e=e.host),Mr.has(this)){var l=Mr.get(this);-1===b.call(l,e)&&y.call(l,e)}else Mr.set(this,[e]);return Tr.call(this,e,t)},Ar.prototype.takeRecords=function(){return Hr(Nr.call(this),this)},c(window,"MutationObserver",{value:Ar,configurable:!0,writable:!0}),u(Tt,{addEventListener:{value:function(e,t,n){if(Zn(this))return Un.apply(this,arguments);if(arguments.length<2){var r=T.call(arguments);return r.length>1&&(r[1]=Rn(r[1])),Nt.apply(this,r)}var l=Rn(t);return Nt.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(Zn(this))return Kn.apply(this,arguments);var r=T.call(arguments);arguments.length>1&&(r[1]=Rn(r[1])),Mt.apply(this,r),Mt.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&u(Window.prototype,{addEventListener:{value:Rr,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:$r,enumerable:!0,writable:!0,configurable:!0}}),u(Event.prototype,{target:{get:_r,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=qe.call(this);return S(e)?null:1===$n.get(this)?Qn(e):e},enumerable:!0,configurable:!0},composedPath:{value:Pr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:_r,enumerable:!0,configurable:!0},path:{get:Pr,enumerable:!0,configurable:!0}}),Dr(FocusEvent),Dr(MouseEvent);var Br,Ir=h.call(Text.prototype,"assignedSlot")?s(Text.prototype,"assignedSlot").get:function(){return null},kr={childList:!0},xr=new WeakMap;function Fr(e){var t=wt(ue.call(e));return E.call(t,(function(e,t){return t instanceof Element&&It(t)?y.apply(e,Fr(t)):y.call(e,t),e}),[])}function jr(){var e=le.call(this);if(e instanceof Element){var t=Ue.call(e);if(mt(t))return this instanceof Text?Ir.call(this):Ke.call(this)}return!S(e)&&It(e)&&Ht(e)!==Ht(this)?e:null}function Wr(e,t){var n,r=Ht(e);if(C(r))n=e instanceof HTMLBodyElement?m.call(t,(function(t){return C(Ht(t))||Et(e)})):T.call(t);else if(Zn(e)){var l=Dt(e);n=S(l)?[]:Rt(e)?Ft(e,t):Wt(l,t)}else n=m.call(t,(function(e){return At(e)===r}));return n}function Ur(){for(var e=Sn(this),t="",n=0,r=e.length;n<r;n+=1)t+=tn(e[n]);return t}function Kr(){return tn(this)}function Gr(){var e=Dt(this),t=S(e)?[]:Wt(e,Kt(this));return fn(m.call(t,(function(e){return e instanceof Element})))}function qr(){return this.children.length}function Xr(){return this.children[0]||null}function Yr(){var e=this.children;return e.item(e.length-1)||null}function Vr(e,t,n){var r;if(Zn(e)){var l=Dt(e);r=S(l)?[]:Rt(e)?Ft(e,t):Wt(l,t)}else if($t(e)){var o=Ht(e);if(C(o))if(1===n){var a=At(e);r=m.call(t,(function(e){return At(e)===a}))}else r=T.call(t);else r=m.call(t,(function(e){return At(e)===o}))}else r=e instanceof HTMLBodyElement||1===n?m.call(t,(function(t){return C(Ht(t))||Et(e)})):T.call(t);return r}function zr(e){var t=yt(e);return ct.call(t,e)}function Jr(e){var t=yt(e);return st.call(t)}function Qr(e){return"visible"===e.visibility&&"none"!==e.display}u(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||xr.get(this)||(xr.set(this,!0),Br||(Br=new ft((function(e){var t=[];L.call(e,(function(e){var n=e.target;-1===b.call(t,n)&&(y.call(t,n),Lt.call(n,new CustomEvent("slotchange")))}))}))),ht.call(Br,this,kr))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if($t(this)){var t=!C(e)&&O(e.flatten),n=t?Fr(this):Gt(this);return m.call(n,(function(e){return e instanceof Element}))}return _.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if($t(this)){var t=!C(e)&&O(e.flatten);return t?Fr(this):Gt(this)}return $.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=fe.call(this,"name");return S(e)?"":e},set:function(e){ye.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if($t(this)){var e=Dt(this);return on(S(e)?[]:Wt(e,Kt(this)))}return ue.call(this)},enumerable:!0,configurable:!0}}),u(Text.prototype,{assignedSlot:{get:jr,enumerable:!0,configurable:!0}}),u(Element.prototype,{innerHTML:{get:function(){return hn.ENABLE_ELEMENT_PATCH?Et(this)?Re.call(this):Ur.call(this):$t(this)||Zn(this)?Ur.call(this):Re.call(this)},set:function(e){$e.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return hn.ENABLE_ELEMENT_PATCH?Et(this)?Pe.call(this):Kr.call(this):$t(this)||Zn(this)?Kr.call(this):Pe.call(this)},set:function(e){De.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?nr(this,e):Ee.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(Zn(this)){var e=Qn(this);if("open"===e.mode)return e}return Ue.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return pn(this)?Gr.call(this):je.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return pn(this)?qr.call(this):we.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return pn(this)?Xr.call(this):Te.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return pn(this)?Yr.call(this):Ne.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:jr,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"innerHTML")&&c(HTMLElement.prototype,"innerHTML",s(Element.prototype,"innerHTML")),h.call(HTMLElement.prototype,"outerHTML")&&c(HTMLElement.prototype,"outerHTML",s(Element.prototype,"outerHTML")),h.call(HTMLElement.prototype,"children")&&c(HTMLElement.prototype,"children",s(Element.prototype,"children")),u(Element.prototype,{querySelector:{value:function(){var e=this,t=wt(be.apply(this,T.call(arguments)));if(Zn(this)){var n=Dt(this);return S(n)?null:Rt(this)?jt(this,t):Ut(n,t)}if($t(this)){var r=Ht(this);if(C(r)){if(!hn.ENABLE_NODE_LIST_PATCH)return 0===t.length?null:t[0];var l=At(this),o=v.call(t,(function(e){return At(e)===l}));return C(o)?null:o}var a=v.call(t,(function(e){return At(e)===r}));return C(a)?null:a}if(!(hn.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){var i=t[0];return C(i)?null:i}var u=v.call(t,(function(t){return C(Ht(t))||Et(e)}));return C(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=wt(be.apply(this,T.call(arguments)));if(!hn.ENABLE_NODE_LIST_PATCH){var t=Vr(this,e,0);return on(t)}return on(Vr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),u(Element.prototype,{getElementsByClassName:{value:function(){var e=wt(We.apply(this,T.call(arguments)));if(!hn.ENABLE_HTML_COLLECTIONS_PATCH)return fn(Wr(this,e));var t=Vr(this,e,1);return fn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=wt(pe.apply(this,T.call(arguments)));if(!hn.ENABLE_HTML_COLLECTIONS_PATCH)return fn(Wr(this,e));var t=Vr(this,e,1);return fn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=wt(ge.apply(this,T.call(arguments)));if(!hn.ENABLE_HTML_COLLECTIONS_PATCH)return fn(Wr(this,e));var t=Vr(this,e,1);return fn(t)},writable:!0,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"getElementsByClassName")&&c(HTMLElement.prototype,"getElementsByClassName",s(Element.prototype,"getElementsByClassName"));function Zr(e){var t=[];if(function(e){return e.nodeType===W}(e)){var n=e.tagName,r=zr(e);if("OPTION"===n)return[1,Me.call(e),1];if("TEXTAREA"===n)return[];for(var l=e.childNodes,o=0,a=l.length;o<a;o++)y.apply(t,Zr(l[o]));if(!Qr(r))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");var i=r.display;"table-cell"===i&&t.push("\t"),"table-row"===i&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==i&&"table-caption"!==i&&"flex"!==i&&"table"!==i||(t.unshift(1),t.push(1))}else(function(e){return e.nodeType===U})(e)&&t.push(function(e){var t=Jr(e);if(null===t)return e.textContent||"";var n=document.createRange();n.selectNodeContents(e);var r=n.getBoundingClientRect();return r.height<=0||r.width<=0?"":(t.removeAllRanges(),t.addRange(n),t.toString()||e.textContent||"")}(e));return t}function el(e){if(!Qr(zr(e)))return nn(e)||"";for(var t=function(e){var t=yt(e),n=Jr(e);if(null===n)return null;for(var r=[],l=0;l<n.rangeCount;l++)r.push(n.getRangeAt(l));var o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:r};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],r=e.childNodes,l=0,o=r.length;l<o;l++)y.apply(n,Zr(r[l]));!function(e){if(null!==e){var t=e.element,n=e.onselect,r=e.onselectstart,l=e.onselectionchange,o=e.ranges,a=yt(t),i=Jr(t);i.removeAllRanges();for(var u=0;u<o.length;u++)i.addRange(o[u]);a.onselect=n,a.onselectstart=r,a.onselectionchange=l}}(t);for(var a="",i=0,u=0,c=n.length;u<c;u++){var s=n[u];if("string"==typeof s){if(i>0){for(var f=0;f<i;f++)a+="\n";i=0}s.length>0&&(a+=s)}else{if(0==a.length)continue;s>i&&(i=s)}}return a}var tl="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",nl=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function rl(e){return e.filter((function(e){return me.call(e,"tabindex")?"0"===fe.call(e,"tabindex"):!nl.has(Be.call(e))||!me.call(e,"disabled")}))}var ll=new WeakMap;function ol(e){return(!Zn(e)||!zn(e))&&(Fe.call(e,tl)&&function(e){var t=he.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function al(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=wt(be.call(this,tl)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=ve.call(this,tl);S(a)||a.focus.apply(a,arguments)}}function il(e){var t=dt(e),n=rl(wt(et.call(t,tl))),r=rl(wt(be.call(e,tl))),l=r[0],o=r[r.length-1],a=b.call(n,e),i=a>-1?a:b.call(n,l),u=0===r.length?i+1:b.call(n,o)+1;return{prev:T.call(n,0,i),inner:r,next:T.call(n,u)}}function ul(e,t){var n=V.call(e,t);return n&x?0:n&F?1:n&j?2:-1}function cl(e){e.preventDefault(),e.stopPropagation()}function sl(e,t){it.call(e,"focusin",cl,!0),it.call(e,"focusout",cl,!0),t(),ut.call(e,"focusin",cl,!0),ut.call(e,"focusout",cl,!0)}function fl(e,t,n){var r=yt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(dl(t.getRootNode(),l))return l}return null}(e,n);S(l)?sl(r,(function(){t.blur()})):sl(r,(function(){l.focus()}))}var hl=!1;function pl(){hl=!0}function gl(){hl=!1}function ml(){return!hl}function vl(e){if(!hl){var t=qe.call(e),n=Ge.call(e);if(t===n){var r=Xe.call(e);if(!S(r)){var l=il(t);if(1===ul(t,r)){var o=dl.bind(null,t.getRootNode()),a=v.call(l.inner,o);if(C(a))fl(l.next,n,r);else sl(yt(a),(function(){a.focus()}))}else t===n&&fl(w.call(l.prev),n,r)}}}}function bl(e){if(!hl){var t=Xe.call(e);if(!S(t)){var n=qe.call(e),r=il(n);if(-1===b.call(r.inner,t)){var l=Ge.call(e),o=ul(n,t);1===o&&fl(r.next,l,t),2===o&&fl(w.call(r.prev),l,t)}}}}function dl(e,t){if(!ol(t))return!1;for(var n=dt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===fe.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function yl(e){Mt.call(e,"focusin",vl,!0)}function El(e){var t=dt(e);ll.get(t)||(ll.set(t,!0),Nt.call(t,"mousedown",pl,!0),Nt.call(t,"mouseup",(function(){setTimeout(gl)}),!0),Nt.call(t,"dragstart",gl,!0))}function wl(e){Mt.call(e,"focusin",bl,!0)}var Tl=HTMLElement.prototype,Nl=Tl.blur,Ll=Tl.focus;function Ml(){return zn(this)&&H(me.call(this,"tabindex"))?0:ke.call(this)}function Cl(e){var t=zn(this),n=ke.call(this),r=me.call(this,"tabindex");xe.call(this,e);var l,o=ke.call(this),a=me.call(this,"tabindex"),i=n!==o;(r&&(i||H(a))&&(-1===n&&wl(this),0===n&&t&&yl(this)),H(a))||(r&&a&&H(i)||(-1===o&&(El(l=this),yl(l),Nt.call(l,"focusin",bl,!0)),0===o&&t&&function(e){El(e),wl(e),Nt.call(e,"focusin",vl,!0)}(this)))}function Sl(){if(zn(this)){var e=(n=dt(t=this),S(r=Ve.call(n))||0!=(V.call(t,r)&x)?r:null);if(!S(e))return void e.blur()}var t,n,r;return Nl.call(this)}function Ol(){var e=ml();e&&pl(),Zn(this)&&zn(this)?al.call(this):(Ll.apply(this,arguments),e&&gl())}function Hl(e,t){e.$shadowResolver$=t;for(var n=ue.call(e),r=0,l=n.length;r<l;r++)Hl(n[r],t)}u(HTMLElement.prototype,{tabIndex:{get:function(){return Zn(this)?Ml.call(this):ke.call(this)},set:function(e){return Zn(this)?Cl.call(this,e):xe.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(Zn(this))return Sl.call(this);Nl.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Ol.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Me&&null!==Ce&&c(HTMLElement.prototype,"innerText",{get:function(){return hn.ENABLE_INNER_OUTER_TEXT_PATCH?hn.ENABLE_ELEMENT_PATCH?Et(this)?Me.call(this):el(this):$t(this)||Zn(this)?el(this):Me.call(this):Me.call(this)},set:function(e){Ce.call(this,e)},enumerable:!0,configurable:!0}),null!==Oe&&null!==He&&c(HTMLElement.prototype,"outerText",{get:function(){return hn.ENABLE_INNER_OUTER_TEXT_PATCH?hn.ENABLE_ELEMENT_PATCH?Et(this)?Oe.call(this):el(this):$t(this)||Zn(this)?el(this):Oe.call(this):Oe.call(this)},set:function(e){He.call(this,e)},enumerable:!0,configurable:!0}),c(Element.prototype,B,{set:function(e){var t=this.$$ShadowTokenKey$$;C(t)||t===e||de.call(this,t),C(e)||ye.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0}),c(Element.prototype,"$shadowStaticNode$",{set:function(e){e&&Hl(this,this.$shadowResolver$);this.$shadowStaticNodeKey$=e},get:function(){return this.$shadowStaticNodeKey$},configurable:!0});var Al,Rl=function(){},$l={childList:!0};function _l(e,t,n){var r=Yn(e);if(r!==t&&(Vn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),Zn(e))return;C(r)&&ht.call(Al,e,$l);for(var l=ue.call(e),o=0,a=l.length;o<a;o+=1)_l(l[o],t,n)}}function Pl(e){if(C(Al)&&(Al=new ft((function(e){L.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Yn(t),o=function(e){return e.$shadowToken$}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];V.call(t,u)&I.DOCUMENT_POSITION_CONTAINED_BY||_l(u,Rl,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];V.call(t,f)&I.DOCUMENT_POSITION_CONTAINED_BY&&_l(f,l,o)}}))}))),C(Yn(e)))throw new Error("Invalid Element");ht.call(Al,e,$l)}c(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,O(e)&&Pl(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}));
|