@appsurify-testmap/rrdom 2.1.3-alpha.3 → 3.1.1-alpha.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/rrdom.cjs +10 -10
- package/dist/rrdom.cjs.map +1 -1
- package/dist/rrdom.js +10 -10
- package/dist/rrdom.js.map +1 -1
- package/dist/rrdom.umd.cjs +10 -10
- package/dist/rrdom.umd.cjs.map +2 -2
- package/dist/rrdom.umd.min.cjs.map +3 -3
- package/package.json +3 -3
package/dist/rrdom.umd.cjs
CHANGED
|
@@ -210,12 +210,12 @@ function getAugmentedNamespace(n) {
|
|
|
210
210
|
} else
|
|
211
211
|
a = {};
|
|
212
212
|
Object.defineProperty(a, "__esModule", { value: true });
|
|
213
|
-
Object.keys(n).forEach(function(
|
|
214
|
-
var d = Object.getOwnPropertyDescriptor(n,
|
|
215
|
-
Object.defineProperty(a,
|
|
213
|
+
Object.keys(n).forEach(function(k2) {
|
|
214
|
+
var d = Object.getOwnPropertyDescriptor(n, k2);
|
|
215
|
+
Object.defineProperty(a, k2, d.get ? d : {
|
|
216
216
|
enumerable: true,
|
|
217
217
|
get: function() {
|
|
218
|
-
return n[
|
|
218
|
+
return n[k2];
|
|
219
219
|
}
|
|
220
220
|
});
|
|
221
221
|
});
|
|
@@ -662,7 +662,7 @@ function cloneNode(obj, parent) {
|
|
|
662
662
|
} else if (i === "source") {
|
|
663
663
|
cloned[i] = value;
|
|
664
664
|
} else if (Array.isArray(value)) {
|
|
665
|
-
cloned[i] = value.map((
|
|
665
|
+
cloned[i] = value.map((j2) => cloneNode(j2, cloned));
|
|
666
666
|
} else {
|
|
667
667
|
if (type === "object" && value !== null)
|
|
668
668
|
value = cloneNode(value);
|
|
@@ -903,7 +903,7 @@ let Node$5 = class Node2 {
|
|
|
903
903
|
}
|
|
904
904
|
return result2;
|
|
905
905
|
}
|
|
906
|
-
toJSON(
|
|
906
|
+
toJSON(_2, inputs) {
|
|
907
907
|
let fixed = {};
|
|
908
908
|
let emitInputs = inputs == null;
|
|
909
909
|
inputs = inputs || /* @__PURE__ */ new Map();
|
|
@@ -2619,8 +2619,8 @@ let Parser$1 = class Parser {
|
|
|
2619
2619
|
return;
|
|
2620
2620
|
let founded = 0;
|
|
2621
2621
|
let token;
|
|
2622
|
-
for (let
|
|
2623
|
-
token = tokens[
|
|
2622
|
+
for (let j2 = colon - 1; j2 >= 0; j2--) {
|
|
2623
|
+
token = tokens[j2];
|
|
2624
2624
|
if (token[0] !== "space") {
|
|
2625
2625
|
founded += 1;
|
|
2626
2626
|
if (founded === 2)
|
|
@@ -2742,8 +2742,8 @@ let Parser$1 = class Parser {
|
|
|
2742
2742
|
} else if (token[1].toLowerCase() === "important") {
|
|
2743
2743
|
let cache = tokens.slice(0);
|
|
2744
2744
|
let str = "";
|
|
2745
|
-
for (let
|
|
2746
|
-
let type = cache[
|
|
2745
|
+
for (let j2 = i; j2 > 0; j2--) {
|
|
2746
|
+
let type = cache[j2][0];
|
|
2747
2747
|
if (str.trim().indexOf("!") === 0 && type !== "space") {
|
|
2748
2748
|
break;
|
|
2749
2749
|
}
|