@digipair/skill-keycloak 0.94.0-0 → 0.94.0-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/index.cjs.js +74 -66
- package/dist/index.esm.js +74 -66
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
@@ -23920,14 +23920,14 @@ function indent(str, spaces) {
|
|
23920
23920
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
23921
23921
|
// match is required
|
23922
23922
|
if (!match) {
|
23923
|
-
return
|
23923
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
23924
23924
|
v: nextMatch1
|
23925
23925
|
};
|
23926
23926
|
}
|
23927
23927
|
var token = match.token, offset = match.offset;
|
23928
23928
|
i1 += offset;
|
23929
23929
|
if (token === ' ') {
|
23930
|
-
return
|
23930
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23931
23931
|
}
|
23932
23932
|
tokens1 = _to_consumable_array$1$1(tokens1).concat([
|
23933
23933
|
token
|
@@ -23946,7 +23946,7 @@ function indent(str, spaces) {
|
|
23946
23946
|
if (contextKeys.some(function(el) {
|
23947
23947
|
return el.startsWith(name);
|
23948
23948
|
})) {
|
23949
|
-
return
|
23949
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23950
23950
|
}
|
23951
23951
|
if (dateTimeIdentifiers.some(function(el) {
|
23952
23952
|
return el === name;
|
@@ -23965,9 +23965,9 @@ function indent(str, spaces) {
|
|
23965
23965
|
if (dateTimeIdentifiers.some(function(el) {
|
23966
23966
|
return el.startsWith(name);
|
23967
23967
|
})) {
|
23968
|
-
return
|
23968
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23969
23969
|
}
|
23970
|
-
return
|
23970
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
23971
23971
|
v: nextMatch1
|
23972
23972
|
};
|
23973
23973
|
};
|
@@ -150286,58 +150286,66 @@ internalConstants.cloningSteps = Symbol("cloning steps");
|
|
150286
150286
|
* This SymbolTree is used to build the tree for all Node in a document
|
150287
150287
|
*/ internalConstants.domSymbolTree = new SymbolTree("DOM SymbolTree");
|
150288
150288
|
|
150289
|
-
var
|
150290
|
-
var
|
150291
|
-
|
150292
|
-
function
|
150293
|
-
|
150294
|
-
|
150295
|
-
|
150296
|
-
|
150297
|
-
|
150298
|
-
|
150299
|
-
|
150300
|
-
|
150301
|
-
|
150302
|
-
|
150303
|
-
|
150304
|
-
|
150305
|
-
|
150306
|
-
|
150307
|
-
|
150308
|
-
|
150309
|
-
|
150310
|
-
|
150311
|
-
|
150312
|
-
|
150313
|
-
|
150314
|
-
|
150315
|
-
|
150316
|
-
|
150317
|
-
|
150318
|
-
|
150319
|
-
|
150320
|
-
|
150321
|
-
|
150322
|
-
|
150323
|
-
|
150324
|
-
|
150325
|
-
|
150326
|
-
|
150327
|
-
|
150328
|
-
|
150329
|
-
|
150330
|
-
|
150331
|
-
|
150332
|
-
|
150333
|
-
|
150289
|
+
var node$2;
|
150290
|
+
var hasRequiredNode$3;
|
150291
|
+
|
150292
|
+
function requireNode$3 () {
|
150293
|
+
if (hasRequiredNode$3) return node$2;
|
150294
|
+
hasRequiredNode$3 = 1;
|
150295
|
+
var NODE_TYPE = nodeType;
|
150296
|
+
var domSymbolTree = internalConstants.domSymbolTree;
|
150297
|
+
// https://dom.spec.whatwg.org/#concept-node-length
|
150298
|
+
function nodeLength(node) {
|
150299
|
+
switch(node.nodeType){
|
150300
|
+
case NODE_TYPE.DOCUMENT_TYPE_NODE:
|
150301
|
+
return 0;
|
150302
|
+
case NODE_TYPE.TEXT_NODE:
|
150303
|
+
case NODE_TYPE.PROCESSING_INSTRUCTION_NODE:
|
150304
|
+
case NODE_TYPE.COMMENT_NODE:
|
150305
|
+
return node.data.length;
|
150306
|
+
default:
|
150307
|
+
return domSymbolTree.childrenCount(node);
|
150308
|
+
}
|
150309
|
+
}
|
150310
|
+
// https://dom.spec.whatwg.org/#concept-tree-root
|
150311
|
+
function nodeRoot(node) {
|
150312
|
+
while(domSymbolTree.parent(node)){
|
150313
|
+
node = domSymbolTree.parent(node);
|
150314
|
+
}
|
150315
|
+
return node;
|
150316
|
+
}
|
150317
|
+
// https://dom.spec.whatwg.org/#concept-tree-inclusive-ancestor
|
150318
|
+
function isInclusiveAncestor(ancestorNode, node) {
|
150319
|
+
while(node){
|
150320
|
+
if (ancestorNode === node) {
|
150321
|
+
return true;
|
150322
|
+
}
|
150323
|
+
node = domSymbolTree.parent(node);
|
150324
|
+
}
|
150325
|
+
return false;
|
150326
|
+
}
|
150327
|
+
// https://dom.spec.whatwg.org/#concept-tree-following
|
150328
|
+
function isFollowing(nodeA, nodeB) {
|
150329
|
+
if (nodeA === nodeB) {
|
150330
|
+
return false;
|
150331
|
+
}
|
150332
|
+
var current = nodeB;
|
150333
|
+
while(current){
|
150334
|
+
if (current === nodeA) {
|
150335
|
+
return true;
|
150336
|
+
}
|
150337
|
+
current = domSymbolTree.following(current);
|
150338
|
+
}
|
150339
|
+
return false;
|
150340
|
+
}
|
150341
|
+
node$2 = {
|
150342
|
+
nodeLength: nodeLength,
|
150343
|
+
nodeRoot: nodeRoot,
|
150344
|
+
isInclusiveAncestor: isInclusiveAncestor,
|
150345
|
+
isFollowing: isFollowing
|
150346
|
+
};
|
150347
|
+
return node$2;
|
150334
150348
|
}
|
150335
|
-
var node$2 = {
|
150336
|
-
nodeLength: nodeLength,
|
150337
|
-
nodeRoot: nodeRoot$1,
|
150338
|
-
isInclusiveAncestor: isInclusiveAncestor,
|
150339
|
-
isFollowing: isFollowing
|
150340
|
-
};
|
150341
150349
|
|
150342
150350
|
var namespaces = {};
|
150343
150351
|
|
@@ -151667,7 +151675,7 @@ function _ts_values(o) {
|
|
151667
151675
|
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
151668
151676
|
}
|
151669
151677
|
var NODE_TYPE$3 = nodeType;
|
151670
|
-
var nodeRoot =
|
151678
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
151671
151679
|
var HTML_NS$1 = namespaces.HTML_NS;
|
151672
151680
|
var domSymbolTree$2 = internalConstants.domSymbolTree;
|
151673
151681
|
var _require$9 = mutationObservers, signalSlotList = _require$9.signalSlotList, queueMutationObserverMicrotask = _require$9.queueMutationObserverMicrotask;
|
@@ -154329,7 +154337,7 @@ function requireEventTargetImpl () {
|
|
154329
154337
|
var DOMException = DOMException$3;
|
154330
154338
|
var reportException = runtimeScriptErrors;
|
154331
154339
|
var idlUtils = utilsExports;
|
154332
|
-
var nodeRoot =
|
154340
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
154333
154341
|
var _require = shadowDom, isNode = _require.isNode, isShadowRoot = _require.isShadowRoot, isSlotable = _require.isSlotable, getEventTargetParent = _require.getEventTargetParent, isShadowInclusiveAncestor = _require.isShadowInclusiveAncestor, retarget = _require.retarget;
|
154334
154342
|
var MouseEvent = requireMouseEvent();
|
154335
154343
|
var EVENT_PHASE = {
|
@@ -161234,7 +161242,7 @@ function requireNodeImpl () {
|
|
161234
161242
|
var _require = requireNode$2(), clone = _require.clone, locateNamespacePrefix = _require.locateNamespacePrefix, locateNamespace = _require.locateNamespace;
|
161235
161243
|
var setAnExistingAttributeValue = attributes$1.setAnExistingAttributeValue;
|
161236
161244
|
var NodeList$1 = NodeList;
|
161237
|
-
var _require1 =
|
161245
|
+
var _require1 = requireNode$3(), nodeRoot = _require1.nodeRoot, nodeLength = _require1.nodeLength, isInclusiveAncestor = _require1.isInclusiveAncestor;
|
161238
161246
|
var domSymbolTree = internalConstants.domSymbolTree;
|
161239
161247
|
var documentBaseURLSerialized = documentBaseUrl.documentBaseURLSerialized;
|
161240
161248
|
var queueTreeMutationRecord = mutationObservers.queueTreeMutationRecord;
|
@@ -185226,7 +185234,7 @@ function requireDocumentOrShadowRootImpl () {
|
|
185226
185234
|
return Constructor;
|
185227
185235
|
}
|
185228
185236
|
var NODE_TYPE = nodeType;
|
185229
|
-
var nodeRoot =
|
185237
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
185230
185238
|
var retarget = shadowDom.retarget;
|
185231
185239
|
var DocumentOrShadowRootImpl = /*#__PURE__*/ function() {
|
185232
185240
|
function DocumentOrShadowRootImpl() {
|
@@ -185398,7 +185406,7 @@ function requireShadowRootImpl () {
|
|
185398
185406
|
return _possible_constructor_return(this, result);
|
185399
185407
|
};
|
185400
185408
|
}
|
185401
|
-
var nodeRoot =
|
185409
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
185402
185410
|
var mixin = utils$7.mixin;
|
185403
185411
|
var DocumentFragment = requireDocumentFragmentImpl().implementation;
|
185404
185412
|
var DocumentOrShadowRootImpl = requireDocumentOrShadowRootImpl().implementation;
|
@@ -201134,7 +201142,7 @@ function requireBoundaryPoint () {
|
|
201134
201142
|
if (hasRequiredBoundaryPoint) return boundaryPoint;
|
201135
201143
|
hasRequiredBoundaryPoint = 1;
|
201136
201144
|
var domSymbolTree = internalConstants.domSymbolTree;
|
201137
|
-
var _require =
|
201145
|
+
var _require = requireNode$3(), nodeRoot = _require.nodeRoot, isFollowing = _require.isFollowing, isInclusiveAncestor = _require.isInclusiveAncestor;
|
201138
201146
|
// Returns 0 if equal, +1 for after and -1 for before
|
201139
201147
|
// https://dom.spec.whatwg.org/#concept-range-bp-after
|
201140
201148
|
function compareBoundaryPointsPosition(bpA, bpB) {
|
@@ -201268,7 +201276,7 @@ function requireRangeImpl () {
|
|
201268
201276
|
var HTML_NS = namespaces.HTML_NS;
|
201269
201277
|
var domSymbolTree = internalConstants.domSymbolTree;
|
201270
201278
|
var compareBoundaryPointsPosition = requireBoundaryPoint().compareBoundaryPointsPosition;
|
201271
|
-
var _require =
|
201279
|
+
var _require = requireNode$3(), nodeRoot = _require.nodeRoot, nodeLength = _require.nodeLength, isInclusiveAncestor = _require.isInclusiveAncestor;
|
201272
201280
|
var createElement = requireCreateElement().createElement;
|
201273
201281
|
var AbstractRangeImpl = requireAbstractRangeImpl().implementation;
|
201274
201282
|
var Range = requireRange$1();
|
@@ -243515,7 +243523,7 @@ function requireHTMLLabelElementImpl () {
|
|
243515
243523
|
var domSymbolTree = internalConstants.domSymbolTree;
|
243516
243524
|
var NODE_TYPE = nodeType;
|
243517
243525
|
var _require = requireFormControls(), isLabelable = _require.isLabelable, isDisabled = _require.isDisabled, isInteractiveContent = _require.isInteractiveContent;
|
243518
|
-
var isInclusiveAncestor =
|
243526
|
+
var isInclusiveAncestor = requireNode$3().isInclusiveAncestor;
|
243519
243527
|
var fireAnEvent = events$2.fireAnEvent;
|
243520
243528
|
function sendClickToAssociatedNode(node) {
|
243521
243529
|
fireAnEvent("click", node, MouseEvent, {
|
@@ -252439,7 +252447,7 @@ function requireHTMLSlotElementImpl () {
|
|
252439
252447
|
var idlUtils = utilsExports;
|
252440
252448
|
var HTMLElement = requireHTMLElement();
|
252441
252449
|
var HTMLElementImpl = requireHTMLElementImpl().implementation;
|
252442
|
-
var nodeRoot =
|
252450
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
252443
252451
|
var _require = shadowDom, assignSlotableForTree = _require.assignSlotableForTree, findFlattenedSlotables = _require.findFlattenedSlotables;
|
252444
252452
|
var HTMLSlotElementImpl = /*#__PURE__*/ function(HTMLElementImpl) {
|
252445
252453
|
_inherits(HTMLSlotElementImpl, HTMLElementImpl);
|
@@ -309927,7 +309935,7 @@ function requireSelectionImpl () {
|
|
309927
309935
|
}
|
309928
309936
|
var DOMException = DOMException$3;
|
309929
309937
|
var NODE_TYPE = nodeType;
|
309930
|
-
var _require =
|
309938
|
+
var _require = requireNode$3(), nodeLength = _require.nodeLength, nodeRoot = _require.nodeRoot;
|
309931
309939
|
var domSymbolTree = internalConstants.domSymbolTree;
|
309932
309940
|
var compareBoundaryPointsPosition = requireBoundaryPoint().compareBoundaryPointsPosition;
|
309933
309941
|
var _require1 = requireRangeImpl(), setBoundaryPointStart = _require1.setBoundaryPointStart, setBoundaryPointEnd = _require1.setBoundaryPointEnd;
|
package/dist/index.esm.js
CHANGED
@@ -23918,14 +23918,14 @@ function indent(str, spaces) {
|
|
23918
23918
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
23919
23919
|
// match is required
|
23920
23920
|
if (!match) {
|
23921
|
-
return
|
23921
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
23922
23922
|
v: nextMatch1
|
23923
23923
|
};
|
23924
23924
|
}
|
23925
23925
|
var token = match.token, offset = match.offset;
|
23926
23926
|
i1 += offset;
|
23927
23927
|
if (token === ' ') {
|
23928
|
-
return
|
23928
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23929
23929
|
}
|
23930
23930
|
tokens1 = _to_consumable_array$1$1(tokens1).concat([
|
23931
23931
|
token
|
@@ -23944,7 +23944,7 @@ function indent(str, spaces) {
|
|
23944
23944
|
if (contextKeys.some(function(el) {
|
23945
23945
|
return el.startsWith(name);
|
23946
23946
|
})) {
|
23947
|
-
return
|
23947
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23948
23948
|
}
|
23949
23949
|
if (dateTimeIdentifiers.some(function(el) {
|
23950
23950
|
return el === name;
|
@@ -23963,9 +23963,9 @@ function indent(str, spaces) {
|
|
23963
23963
|
if (dateTimeIdentifiers.some(function(el) {
|
23964
23964
|
return el.startsWith(name);
|
23965
23965
|
})) {
|
23966
|
-
return
|
23966
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23967
23967
|
}
|
23968
|
-
return
|
23968
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
23969
23969
|
v: nextMatch1
|
23970
23970
|
};
|
23971
23971
|
};
|
@@ -150284,58 +150284,66 @@ internalConstants.cloningSteps = Symbol("cloning steps");
|
|
150284
150284
|
* This SymbolTree is used to build the tree for all Node in a document
|
150285
150285
|
*/ internalConstants.domSymbolTree = new SymbolTree("DOM SymbolTree");
|
150286
150286
|
|
150287
|
-
var
|
150288
|
-
var
|
150289
|
-
|
150290
|
-
function
|
150291
|
-
|
150292
|
-
|
150293
|
-
|
150294
|
-
|
150295
|
-
|
150296
|
-
|
150297
|
-
|
150298
|
-
|
150299
|
-
|
150300
|
-
|
150301
|
-
|
150302
|
-
|
150303
|
-
|
150304
|
-
|
150305
|
-
|
150306
|
-
|
150307
|
-
|
150308
|
-
|
150309
|
-
|
150310
|
-
|
150311
|
-
|
150312
|
-
|
150313
|
-
|
150314
|
-
|
150315
|
-
|
150316
|
-
|
150317
|
-
|
150318
|
-
|
150319
|
-
|
150320
|
-
|
150321
|
-
|
150322
|
-
|
150323
|
-
|
150324
|
-
|
150325
|
-
|
150326
|
-
|
150327
|
-
|
150328
|
-
|
150329
|
-
|
150330
|
-
|
150331
|
-
|
150287
|
+
var node$2;
|
150288
|
+
var hasRequiredNode$3;
|
150289
|
+
|
150290
|
+
function requireNode$3 () {
|
150291
|
+
if (hasRequiredNode$3) return node$2;
|
150292
|
+
hasRequiredNode$3 = 1;
|
150293
|
+
var NODE_TYPE = nodeType;
|
150294
|
+
var domSymbolTree = internalConstants.domSymbolTree;
|
150295
|
+
// https://dom.spec.whatwg.org/#concept-node-length
|
150296
|
+
function nodeLength(node) {
|
150297
|
+
switch(node.nodeType){
|
150298
|
+
case NODE_TYPE.DOCUMENT_TYPE_NODE:
|
150299
|
+
return 0;
|
150300
|
+
case NODE_TYPE.TEXT_NODE:
|
150301
|
+
case NODE_TYPE.PROCESSING_INSTRUCTION_NODE:
|
150302
|
+
case NODE_TYPE.COMMENT_NODE:
|
150303
|
+
return node.data.length;
|
150304
|
+
default:
|
150305
|
+
return domSymbolTree.childrenCount(node);
|
150306
|
+
}
|
150307
|
+
}
|
150308
|
+
// https://dom.spec.whatwg.org/#concept-tree-root
|
150309
|
+
function nodeRoot(node) {
|
150310
|
+
while(domSymbolTree.parent(node)){
|
150311
|
+
node = domSymbolTree.parent(node);
|
150312
|
+
}
|
150313
|
+
return node;
|
150314
|
+
}
|
150315
|
+
// https://dom.spec.whatwg.org/#concept-tree-inclusive-ancestor
|
150316
|
+
function isInclusiveAncestor(ancestorNode, node) {
|
150317
|
+
while(node){
|
150318
|
+
if (ancestorNode === node) {
|
150319
|
+
return true;
|
150320
|
+
}
|
150321
|
+
node = domSymbolTree.parent(node);
|
150322
|
+
}
|
150323
|
+
return false;
|
150324
|
+
}
|
150325
|
+
// https://dom.spec.whatwg.org/#concept-tree-following
|
150326
|
+
function isFollowing(nodeA, nodeB) {
|
150327
|
+
if (nodeA === nodeB) {
|
150328
|
+
return false;
|
150329
|
+
}
|
150330
|
+
var current = nodeB;
|
150331
|
+
while(current){
|
150332
|
+
if (current === nodeA) {
|
150333
|
+
return true;
|
150334
|
+
}
|
150335
|
+
current = domSymbolTree.following(current);
|
150336
|
+
}
|
150337
|
+
return false;
|
150338
|
+
}
|
150339
|
+
node$2 = {
|
150340
|
+
nodeLength: nodeLength,
|
150341
|
+
nodeRoot: nodeRoot,
|
150342
|
+
isInclusiveAncestor: isInclusiveAncestor,
|
150343
|
+
isFollowing: isFollowing
|
150344
|
+
};
|
150345
|
+
return node$2;
|
150332
150346
|
}
|
150333
|
-
var node$2 = {
|
150334
|
-
nodeLength: nodeLength,
|
150335
|
-
nodeRoot: nodeRoot$1,
|
150336
|
-
isInclusiveAncestor: isInclusiveAncestor,
|
150337
|
-
isFollowing: isFollowing
|
150338
|
-
};
|
150339
150347
|
|
150340
150348
|
var namespaces = {};
|
150341
150349
|
|
@@ -151665,7 +151673,7 @@ function _ts_values(o) {
|
|
151665
151673
|
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
151666
151674
|
}
|
151667
151675
|
var NODE_TYPE$3 = nodeType;
|
151668
|
-
var nodeRoot =
|
151676
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
151669
151677
|
var HTML_NS$1 = namespaces.HTML_NS;
|
151670
151678
|
var domSymbolTree$2 = internalConstants.domSymbolTree;
|
151671
151679
|
var _require$9 = mutationObservers, signalSlotList = _require$9.signalSlotList, queueMutationObserverMicrotask = _require$9.queueMutationObserverMicrotask;
|
@@ -154327,7 +154335,7 @@ function requireEventTargetImpl () {
|
|
154327
154335
|
var DOMException = DOMException$3;
|
154328
154336
|
var reportException = runtimeScriptErrors;
|
154329
154337
|
var idlUtils = utilsExports;
|
154330
|
-
var nodeRoot =
|
154338
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
154331
154339
|
var _require = shadowDom, isNode = _require.isNode, isShadowRoot = _require.isShadowRoot, isSlotable = _require.isSlotable, getEventTargetParent = _require.getEventTargetParent, isShadowInclusiveAncestor = _require.isShadowInclusiveAncestor, retarget = _require.retarget;
|
154332
154340
|
var MouseEvent = requireMouseEvent();
|
154333
154341
|
var EVENT_PHASE = {
|
@@ -161232,7 +161240,7 @@ function requireNodeImpl () {
|
|
161232
161240
|
var _require = requireNode$2(), clone = _require.clone, locateNamespacePrefix = _require.locateNamespacePrefix, locateNamespace = _require.locateNamespace;
|
161233
161241
|
var setAnExistingAttributeValue = attributes$1.setAnExistingAttributeValue;
|
161234
161242
|
var NodeList$1 = NodeList;
|
161235
|
-
var _require1 =
|
161243
|
+
var _require1 = requireNode$3(), nodeRoot = _require1.nodeRoot, nodeLength = _require1.nodeLength, isInclusiveAncestor = _require1.isInclusiveAncestor;
|
161236
161244
|
var domSymbolTree = internalConstants.domSymbolTree;
|
161237
161245
|
var documentBaseURLSerialized = documentBaseUrl.documentBaseURLSerialized;
|
161238
161246
|
var queueTreeMutationRecord = mutationObservers.queueTreeMutationRecord;
|
@@ -185224,7 +185232,7 @@ function requireDocumentOrShadowRootImpl () {
|
|
185224
185232
|
return Constructor;
|
185225
185233
|
}
|
185226
185234
|
var NODE_TYPE = nodeType;
|
185227
|
-
var nodeRoot =
|
185235
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
185228
185236
|
var retarget = shadowDom.retarget;
|
185229
185237
|
var DocumentOrShadowRootImpl = /*#__PURE__*/ function() {
|
185230
185238
|
function DocumentOrShadowRootImpl() {
|
@@ -185396,7 +185404,7 @@ function requireShadowRootImpl () {
|
|
185396
185404
|
return _possible_constructor_return(this, result);
|
185397
185405
|
};
|
185398
185406
|
}
|
185399
|
-
var nodeRoot =
|
185407
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
185400
185408
|
var mixin = utils$7.mixin;
|
185401
185409
|
var DocumentFragment = requireDocumentFragmentImpl().implementation;
|
185402
185410
|
var DocumentOrShadowRootImpl = requireDocumentOrShadowRootImpl().implementation;
|
@@ -201132,7 +201140,7 @@ function requireBoundaryPoint () {
|
|
201132
201140
|
if (hasRequiredBoundaryPoint) return boundaryPoint;
|
201133
201141
|
hasRequiredBoundaryPoint = 1;
|
201134
201142
|
var domSymbolTree = internalConstants.domSymbolTree;
|
201135
|
-
var _require =
|
201143
|
+
var _require = requireNode$3(), nodeRoot = _require.nodeRoot, isFollowing = _require.isFollowing, isInclusiveAncestor = _require.isInclusiveAncestor;
|
201136
201144
|
// Returns 0 if equal, +1 for after and -1 for before
|
201137
201145
|
// https://dom.spec.whatwg.org/#concept-range-bp-after
|
201138
201146
|
function compareBoundaryPointsPosition(bpA, bpB) {
|
@@ -201266,7 +201274,7 @@ function requireRangeImpl () {
|
|
201266
201274
|
var HTML_NS = namespaces.HTML_NS;
|
201267
201275
|
var domSymbolTree = internalConstants.domSymbolTree;
|
201268
201276
|
var compareBoundaryPointsPosition = requireBoundaryPoint().compareBoundaryPointsPosition;
|
201269
|
-
var _require =
|
201277
|
+
var _require = requireNode$3(), nodeRoot = _require.nodeRoot, nodeLength = _require.nodeLength, isInclusiveAncestor = _require.isInclusiveAncestor;
|
201270
201278
|
var createElement = requireCreateElement().createElement;
|
201271
201279
|
var AbstractRangeImpl = requireAbstractRangeImpl().implementation;
|
201272
201280
|
var Range = requireRange$1();
|
@@ -243513,7 +243521,7 @@ function requireHTMLLabelElementImpl () {
|
|
243513
243521
|
var domSymbolTree = internalConstants.domSymbolTree;
|
243514
243522
|
var NODE_TYPE = nodeType;
|
243515
243523
|
var _require = requireFormControls(), isLabelable = _require.isLabelable, isDisabled = _require.isDisabled, isInteractiveContent = _require.isInteractiveContent;
|
243516
|
-
var isInclusiveAncestor =
|
243524
|
+
var isInclusiveAncestor = requireNode$3().isInclusiveAncestor;
|
243517
243525
|
var fireAnEvent = events$2.fireAnEvent;
|
243518
243526
|
function sendClickToAssociatedNode(node) {
|
243519
243527
|
fireAnEvent("click", node, MouseEvent, {
|
@@ -252437,7 +252445,7 @@ function requireHTMLSlotElementImpl () {
|
|
252437
252445
|
var idlUtils = utilsExports;
|
252438
252446
|
var HTMLElement = requireHTMLElement();
|
252439
252447
|
var HTMLElementImpl = requireHTMLElementImpl().implementation;
|
252440
|
-
var nodeRoot =
|
252448
|
+
var nodeRoot = requireNode$3().nodeRoot;
|
252441
252449
|
var _require = shadowDom, assignSlotableForTree = _require.assignSlotableForTree, findFlattenedSlotables = _require.findFlattenedSlotables;
|
252442
252450
|
var HTMLSlotElementImpl = /*#__PURE__*/ function(HTMLElementImpl) {
|
252443
252451
|
_inherits(HTMLSlotElementImpl, HTMLElementImpl);
|
@@ -309925,7 +309933,7 @@ function requireSelectionImpl () {
|
|
309925
309933
|
}
|
309926
309934
|
var DOMException = DOMException$3;
|
309927
309935
|
var NODE_TYPE = nodeType;
|
309928
|
-
var _require =
|
309936
|
+
var _require = requireNode$3(), nodeLength = _require.nodeLength, nodeRoot = _require.nodeRoot;
|
309929
309937
|
var domSymbolTree = internalConstants.domSymbolTree;
|
309930
309938
|
var compareBoundaryPointsPosition = requireBoundaryPoint().compareBoundaryPointsPosition;
|
309931
309939
|
var _require1 = requireRangeImpl(), setBoundaryPointStart = _require1.setBoundaryPointStart, setBoundaryPointEnd = _require1.setBoundaryPointEnd;
|