@highlight-run/rrweb 2.1.4 → 2.1.5
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/plugins/console-record.min.js.map +1 -1
- package/dist/plugins/console-replay.min.js.map +1 -1
- package/dist/record/rrweb-record-pack.min.js.map +1 -1
- package/dist/record/rrweb-record.js +3 -3
- package/dist/record/rrweb-record.min.js +3 -3
- package/dist/record/rrweb-record.min.js.map +1 -1
- package/dist/replay/rrweb-replay-unpack.min.js.map +1 -1
- package/dist/replay/rrweb-replay.js +3 -3
- package/dist/replay/rrweb-replay.min.js +3 -3
- package/dist/replay/rrweb-replay.min.js.map +1 -1
- package/dist/rrweb-all.js +5 -5
- package/dist/rrweb-all.min.js +5 -5
- package/dist/rrweb-all.min.js.map +1 -1
- package/dist/rrweb.js +5 -5
- package/dist/rrweb.min.js +5 -5
- package/dist/rrweb.min.js.map +1 -1
- package/es/rrweb/packages/rrweb-snapshot/es/rrweb-snapshot.js +0 -1
- package/lib/record/rrweb-record.js +0 -1
- package/lib/rrweb-all.js +0 -1
- package/lib/rrweb.js +0 -1
- package/package.json +3 -3
|
@@ -846,7 +846,6 @@ function serializeNodeWithId(n, options) {
|
|
|
846
846
|
if (serializedNode.type === NodeType.Element) {
|
|
847
847
|
recordChild = recordChild && !serializedNode.needBlock;
|
|
848
848
|
strictPrivacy = !!serializedNode.needBlock;
|
|
849
|
-
console.log('vadim strictPrivacy', { strictPrivacy: strictPrivacy, enableStrictPrivacy: enableStrictPrivacy });
|
|
850
849
|
if (strictPrivacy && serializedNode.tagName === 'img') {
|
|
851
850
|
var clone = n.cloneNode();
|
|
852
851
|
clone.src = '';
|
|
@@ -848,7 +848,6 @@ function serializeNodeWithId(n, options) {
|
|
|
848
848
|
if (serializedNode.type === NodeType.Element) {
|
|
849
849
|
recordChild = recordChild && !serializedNode.needBlock;
|
|
850
850
|
strictPrivacy = !!serializedNode.needBlock;
|
|
851
|
-
console.log('vadim strictPrivacy', { strictPrivacy: strictPrivacy, enableStrictPrivacy: enableStrictPrivacy });
|
|
852
851
|
if (strictPrivacy && serializedNode.tagName === 'img') {
|
|
853
852
|
var clone = n.cloneNode();
|
|
854
853
|
clone.src = '';
|
package/lib/rrweb-all.js
CHANGED
|
@@ -850,7 +850,6 @@ function serializeNodeWithId(n, options) {
|
|
|
850
850
|
if (serializedNode.type === NodeType$2.Element) {
|
|
851
851
|
recordChild = recordChild && !serializedNode.needBlock;
|
|
852
852
|
strictPrivacy = !!serializedNode.needBlock;
|
|
853
|
-
console.log('vadim strictPrivacy', { strictPrivacy: strictPrivacy, enableStrictPrivacy: enableStrictPrivacy });
|
|
854
853
|
if (strictPrivacy && serializedNode.tagName === 'img') {
|
|
855
854
|
var clone = n.cloneNode();
|
|
856
855
|
clone.src = '';
|
package/lib/rrweb.js
CHANGED
|
@@ -850,7 +850,6 @@ function serializeNodeWithId(n, options) {
|
|
|
850
850
|
if (serializedNode.type === NodeType$2.Element) {
|
|
851
851
|
recordChild = recordChild && !serializedNode.needBlock;
|
|
852
852
|
strictPrivacy = !!serializedNode.needBlock;
|
|
853
|
-
console.log('vadim strictPrivacy', { strictPrivacy: strictPrivacy, enableStrictPrivacy: enableStrictPrivacy });
|
|
854
853
|
if (strictPrivacy && serializedNode.tagName === 'img') {
|
|
855
854
|
var clone = n.cloneNode();
|
|
856
855
|
clone.src = '';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@highlight-run/rrweb",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"description": "record and replay the web",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"prepare": "npm run prepack",
|
|
@@ -76,12 +76,12 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@highlight-run/rrdom": "0.1.17",
|
|
79
|
-
"@highlight-run/rrweb-snapshot": "1.1.
|
|
79
|
+
"@highlight-run/rrweb-snapshot": "1.1.28",
|
|
80
80
|
"@types/css-font-loading-module": "0.0.7",
|
|
81
81
|
"@xstate/fsm": "^1.4.0",
|
|
82
82
|
"base64-arraybuffer": "^1.0.1",
|
|
83
83
|
"fflate": "^0.4.4",
|
|
84
84
|
"mitt": "^3.0.0"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "5dc82d5d41dfdeb937efd030deaf377b3301b97d"
|
|
87
87
|
}
|