@digipair/skill-web 0.5.9 → 0.5.11
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 +7 -7
- package/index.esm.js +2 -2
- package/package.json +1 -1
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 i = i1,
|
|
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 i = i1,
|
|
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 i = i1,
|
|
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 i = i1,
|
|
23558
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23559
23559
|
}
|
|
23560
|
-
return i = i1,
|
|
23560
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23561
23561
|
v: nextMatch1
|
|
23562
23562
|
};
|
|
23563
23563
|
};
|
|
@@ -27508,13 +27508,13 @@ let WebService = class WebService {
|
|
|
27508
27508
|
const preparedBody = body.map((item, index)=>this.filteredWebPinsSettings(item, `body[${index}]`));
|
|
27509
27509
|
const html = `
|
|
27510
27510
|
<!DOCTYPE html>
|
|
27511
|
-
<html style
|
|
27511
|
+
<html style="${styleHtml}">
|
|
27512
27512
|
<head>
|
|
27513
27513
|
<meta charset="UTF-8" />
|
|
27514
27514
|
<title>${title}</title>
|
|
27515
27515
|
<link rel="icon" type="image/x-icon" href="${favicon}">
|
|
27516
27516
|
</head>
|
|
27517
|
-
<body style
|
|
27517
|
+
<body style="${styleBody}">
|
|
27518
27518
|
<script type="module">
|
|
27519
27519
|
import { config, generateElementFromPins } from '${baseUrl}/@digipair/engine@${engineVersion}/index.esm.js';
|
|
27520
27520
|
|
package/index.esm.js
CHANGED
|
@@ -27486,13 +27486,13 @@ let WebService = class WebService {
|
|
|
27486
27486
|
const preparedBody = body.map((item, index)=>this.filteredWebPinsSettings(item, `body[${index}]`));
|
|
27487
27487
|
const html = `
|
|
27488
27488
|
<!DOCTYPE html>
|
|
27489
|
-
<html style
|
|
27489
|
+
<html style="${styleHtml}">
|
|
27490
27490
|
<head>
|
|
27491
27491
|
<meta charset="UTF-8" />
|
|
27492
27492
|
<title>${title}</title>
|
|
27493
27493
|
<link rel="icon" type="image/x-icon" href="${favicon}">
|
|
27494
27494
|
</head>
|
|
27495
|
-
<body style
|
|
27495
|
+
<body style="${styleBody}">
|
|
27496
27496
|
<script type="module">
|
|
27497
27497
|
import { config, generateElementFromPins } from '${baseUrl}/@digipair/engine@${engineVersion}/index.esm.js';
|
|
27498
27498
|
|