@glimt/record 0.0.86 → 0.0.88
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 +7 -4
- package/dist/record.cjs.map +1 -1
- package/dist/record.js +7 -4
- package/dist/record.js.map +1 -1
- package/dist/record.umd.cjs +8 -6
- package/dist/record.umd.cjs.map +2 -2
- package/dist/record.umd.min.cjs +10 -10
- package/dist/record.umd.min.cjs.map +3 -3
- package/package.json +1 -1
package/dist/record.cjs
CHANGED
|
@@ -1695,7 +1695,7 @@ function serializeElementNode(n2, options) {
|
|
|
1695
1695
|
try {
|
|
1696
1696
|
const { bottom, left, right, top, x: x2, y, width, height } = n2.getBoundingClientRect();
|
|
1697
1697
|
attributes = {
|
|
1698
|
-
|
|
1698
|
+
...attributes,
|
|
1699
1699
|
c_rr_top: `${top}px`,
|
|
1700
1700
|
c_rr_left: `${left}px`,
|
|
1701
1701
|
c_rr_bottom: `${bottom}px`,
|
|
@@ -1881,7 +1881,8 @@ function serializeNodeWithId(n2, options) {
|
|
|
1881
1881
|
onStylesheetLoad,
|
|
1882
1882
|
stylesheetLoadTimeout,
|
|
1883
1883
|
keepIframeSrcFn,
|
|
1884
|
-
cssCaptured: false
|
|
1884
|
+
cssCaptured: false,
|
|
1885
|
+
captureBlockBoundingBoxes
|
|
1885
1886
|
};
|
|
1886
1887
|
if (serializedNode.type === NodeType$2.Element && serializedNode.tagName === "textarea" && serializedNode.attributes.value !== void 0) ;
|
|
1887
1888
|
else {
|
|
@@ -1947,7 +1948,8 @@ function serializeNodeWithId(n2, options) {
|
|
|
1947
1948
|
iframeLoadTimeout,
|
|
1948
1949
|
onStylesheetLoad,
|
|
1949
1950
|
stylesheetLoadTimeout,
|
|
1950
|
-
keepIframeSrcFn
|
|
1951
|
+
keepIframeSrcFn,
|
|
1952
|
+
captureBlockBoundingBoxes
|
|
1951
1953
|
});
|
|
1952
1954
|
if (serializedIframeNode) {
|
|
1953
1955
|
onIframeLoad(
|
|
@@ -1988,7 +1990,8 @@ function serializeNodeWithId(n2, options) {
|
|
|
1988
1990
|
iframeLoadTimeout,
|
|
1989
1991
|
onStylesheetLoad,
|
|
1990
1992
|
stylesheetLoadTimeout,
|
|
1991
|
-
keepIframeSrcFn
|
|
1993
|
+
keepIframeSrcFn,
|
|
1994
|
+
captureBlockBoundingBoxes
|
|
1992
1995
|
});
|
|
1993
1996
|
if (serializedLinkNode) {
|
|
1994
1997
|
onStylesheetLoad(
|