@digipair/engine 0.4.23 → 0.4.24

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/index.cjs.js CHANGED
@@ -23510,14 +23510,14 @@ function indent(str, spaces) {
23510
23510
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23511
23511
  // match is required
23512
23512
  if (!match) {
23513
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23513
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23514
23514
  v: nextMatch1
23515
23515
  };
23516
23516
  }
23517
23517
  var token = match.token, offset = match.offset;
23518
23518
  i1 += offset;
23519
23519
  if (token === " ") {
23520
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23520
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23521
23521
  }
23522
23522
  tokens1 = _to_consumable_array$1(tokens1).concat([
23523
23523
  token
@@ -23536,7 +23536,7 @@ function indent(str, spaces) {
23536
23536
  if (contextKeys.some(function(el) {
23537
23537
  return el.startsWith(name);
23538
23538
  })) {
23539
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23539
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23540
23540
  }
23541
23541
  if (dateTimeIdentifiers.some(function(el) {
23542
23542
  return el === name;
@@ -23555,9 +23555,9 @@ function indent(str, spaces) {
23555
23555
  if (dateTimeIdentifiers.some(function(el) {
23556
23556
  return el.startsWith(name);
23557
23557
  })) {
23558
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23558
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23559
23559
  }
23560
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23560
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23561
23561
  v: nextMatch1
23562
23562
  };
23563
23563
  };
@@ -27496,7 +27496,7 @@ const generateElementFromPins = async (pinsSettings, parent, context, options =
27496
27496
  const pinsList = settings.pins || [];
27497
27497
  for(let i = 0; i < pinsList.length; i++){
27498
27498
  const item = pinsList[i];
27499
- await generateElementFromPins(item, element, settings, options);
27499
+ await generateElementFromPins(item, element, context, options);
27500
27500
  }
27501
27501
  parent == null ? void 0 : parent.appendChild(element);
27502
27502
  return element;
package/index.esm.js CHANGED
@@ -27474,7 +27474,7 @@ const generateElementFromPins = async (pinsSettings, parent, context, options =
27474
27474
  const pinsList = settings.pins || [];
27475
27475
  for(let i = 0; i < pinsList.length; i++){
27476
27476
  const item = pinsList[i];
27477
- await generateElementFromPins(item, element, settings, options);
27477
+ await generateElementFromPins(item, element, context, options);
27478
27478
  }
27479
27479
  parent == null ? void 0 : parent.appendChild(element);
27480
27480
  return element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/engine",
3
- "version": "0.4.23",
3
+ "version": "0.4.24",
4
4
  "dependencies": {},
5
5
  "typings": "./index.d.ts",
6
6
  "main": "./index.cjs.js",