@glimt/record 0.0.86 → 0.0.87
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 +1 -1
- package/dist/record.cjs.map +1 -1
- package/dist/record.js +1 -1
- package/dist/record.js.map +1 -1
- package/dist/record.umd.cjs +2 -3
- 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.umd.cjs
CHANGED
|
@@ -1727,8 +1727,7 @@ function serializeElementNode(n2, options) {
|
|
|
1727
1727
|
} else if (captureBlockBoundingBoxes) {
|
|
1728
1728
|
try {
|
|
1729
1729
|
const { bottom, left, right, top, x: x2, y, width, height } = n2.getBoundingClientRect();
|
|
1730
|
-
attributes = {
|
|
1731
|
-
class: attributes.class,
|
|
1730
|
+
attributes = __spreadProps(__spreadValues({}, attributes), {
|
|
1732
1731
|
c_rr_top: `${top}px`,
|
|
1733
1732
|
c_rr_left: `${left}px`,
|
|
1734
1733
|
c_rr_bottom: `${bottom}px`,
|
|
@@ -1737,7 +1736,7 @@ function serializeElementNode(n2, options) {
|
|
|
1737
1736
|
c_rr_y: `${y}px`,
|
|
1738
1737
|
c_rr_width: `${width}px`,
|
|
1739
1738
|
c_rr_height: `${height}px`
|
|
1740
|
-
};
|
|
1739
|
+
});
|
|
1741
1740
|
} catch (e2) {
|
|
1742
1741
|
}
|
|
1743
1742
|
}
|