@digipair/skill-keycloak 0.59.0 → 0.60.1

Sign up to get free protection for your applications and to get access to all the features.
package/index.esm.js CHANGED
@@ -23905,14 +23905,14 @@ function indent(str, spaces) {
23905
23905
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23906
23906
  // match is required
23907
23907
  if (!match) {
23908
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23908
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23909
23909
  v: nextMatch1
23910
23910
  };
23911
23911
  }
23912
23912
  var token = match.token, offset = match.offset;
23913
23913
  i1 += offset;
23914
23914
  if (token === " ") {
23915
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23915
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23916
23916
  }
23917
23917
  tokens1 = _to_consumable_array$3(tokens1).concat([
23918
23918
  token
@@ -23931,7 +23931,7 @@ function indent(str, spaces) {
23931
23931
  if (contextKeys.some(function(el) {
23932
23932
  return el.startsWith(name);
23933
23933
  })) {
23934
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23934
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23935
23935
  }
23936
23936
  if (dateTimeIdentifiers.some(function(el) {
23937
23937
  return el === name;
@@ -23950,9 +23950,9 @@ function indent(str, spaces) {
23950
23950
  if (dateTimeIdentifiers.some(function(el) {
23951
23951
  return el.startsWith(name);
23952
23952
  })) {
23953
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23953
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23954
23954
  }
23955
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23955
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23956
23956
  v: nextMatch1
23957
23957
  };
23958
23958
  };
@@ -28005,7 +28005,11 @@ const generateElementFromPins = async (pinsSettings, parent, context, document =
28005
28005
  const item = pinsList[i];
28006
28006
  await generateElementFromPins(item, element, context, document, options);
28007
28007
  }
28008
- parent == null ? void 0 : parent.appendChild(element);
28008
+ if ((parent == null ? void 0 : parent.nodeName) === 'TEMPLATE') {
28009
+ parent.content.appendChild(element);
28010
+ } else {
28011
+ parent == null ? void 0 : parent.appendChild(element);
28012
+ }
28009
28013
  return element;
28010
28014
  };
28011
28015
  const preparePinsSettings = async (settings, context)=>{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-keycloak",
3
- "version": "0.59.0",
3
+ "version": "0.60.1",
4
4
  "dependencies": {
5
5
  "jsdom": "^25.0.1"
6
6
  },
File without changes