@digipair/skill-web 0.66.0 → 0.66.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/index.cjs.js CHANGED
@@ -11069,7 +11069,7 @@ let WebService = class WebService {
11069
11069
  await executePinsList(${JSON.stringify(this.prepareBrowserPinsSettings('browserLoad', browserLoad))}, context);
11070
11070
  }, 1);
11071
11071
 
11072
- window.addEventListener('beforeunload', function (event) {
11072
+ window.addEventListener('beforeunload', async (event) => {
11073
11073
  const showConfirmationMessage = await executePinsList(${JSON.stringify(this.prepareBrowserPinsSettings('confirmBeforeUnload', confirmBeforeUnload))}, context);
11074
11074
 
11075
11075
  if (showConfirmationMessage) {
package/index.esm.js CHANGED
@@ -23903,14 +23903,14 @@ function indent(str, spaces) {
23903
23903
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23904
23904
  // match is required
23905
23905
  if (!match) {
23906
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23906
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23907
23907
  v: nextMatch1
23908
23908
  };
23909
23909
  }
23910
23910
  var token = match.token, offset = match.offset;
23911
23911
  i1 += offset;
23912
23912
  if (token === " ") {
23913
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23913
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23914
23914
  }
23915
23915
  tokens1 = _to_consumable_array$1(tokens1).concat([
23916
23916
  token
@@ -23929,7 +23929,7 @@ function indent(str, spaces) {
23929
23929
  if (contextKeys.some(function(el) {
23930
23930
  return el.startsWith(name);
23931
23931
  })) {
23932
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23932
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23933
23933
  }
23934
23934
  if (dateTimeIdentifiers.some(function(el) {
23935
23935
  return el === name;
@@ -23948,9 +23948,9 @@ function indent(str, spaces) {
23948
23948
  if (dateTimeIdentifiers.some(function(el) {
23949
23949
  return el.startsWith(name);
23950
23950
  })) {
23951
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23951
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23952
23952
  }
23953
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23953
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23954
23954
  v: nextMatch1
23955
23955
  };
23956
23956
  };
@@ -39101,7 +39101,7 @@ let WebService = class WebService {
39101
39101
  await executePinsList(${JSON.stringify(this.prepareBrowserPinsSettings('browserLoad', browserLoad))}, context);
39102
39102
  }, 1);
39103
39103
 
39104
- window.addEventListener('beforeunload', function (event) {
39104
+ window.addEventListener('beforeunload', async (event) => {
39105
39105
  const showConfirmationMessage = await executePinsList(${JSON.stringify(this.prepareBrowserPinsSettings('confirmBeforeUnload', confirmBeforeUnload))}, context);
39106
39106
 
39107
39107
  if (showConfirmationMessage) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-web",
3
- "version": "0.66.0",
3
+ "version": "0.66.1",
4
4
  "dependencies": {
5
5
  "jsdom": "^25.0.1"
6
6
  },