@glimt/record 0.0.40 → 0.0.41
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/record.cjs +6 -0
- package/dist/record.cjs.map +1 -1
- package/dist/record.js +6 -0
- package/dist/record.js.map +1 -1
- package/dist/record.umd.cjs +6 -0
- package/dist/record.umd.cjs.map +2 -2
- package/dist/record.umd.min.cjs +2 -2
- package/dist/record.umd.min.cjs.map +2 -2
- package/package.json +1 -1
package/dist/record.cjs
CHANGED
|
@@ -485,6 +485,7 @@ function stringifyStylesheet$1(s2) {
|
|
|
485
485
|
).join("");
|
|
486
486
|
return fixBrowserCompatibilityIssuesInCSS$1(stringifiedRules);
|
|
487
487
|
} catch (error) {
|
|
488
|
+
console.log("stringifyStylesheet error:", error);
|
|
488
489
|
return null;
|
|
489
490
|
}
|
|
490
491
|
}
|
|
@@ -1323,6 +1324,10 @@ function serializeElementNode(n2, options) {
|
|
|
1323
1324
|
delete attributes.href;
|
|
1324
1325
|
attributes._cssText = cssText;
|
|
1325
1326
|
} else {
|
|
1327
|
+
console.log(
|
|
1328
|
+
"missing cssText on first passthrough for href:",
|
|
1329
|
+
n2.href
|
|
1330
|
+
);
|
|
1326
1331
|
asyncStylesheetManager.registerClone({
|
|
1327
1332
|
forElement: n2
|
|
1328
1333
|
});
|
|
@@ -5524,6 +5529,7 @@ function stringifyStylesheet(s2) {
|
|
|
5524
5529
|
).join("");
|
|
5525
5530
|
return fixBrowserCompatibilityIssuesInCSS(stringifiedRules);
|
|
5526
5531
|
} catch (error) {
|
|
5532
|
+
console.log("stringifyStylesheet error:", error);
|
|
5527
5533
|
return null;
|
|
5528
5534
|
}
|
|
5529
5535
|
}
|