@openreplay/tracker 15.0.6 → 15.0.7
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/cjs/index.js +48 -12
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/main/app/observer/observer.d.ts +4 -1
- package/dist/cjs/main/app/observer/top_observer.d.ts +1 -0
- package/dist/lib/index.js +48 -12
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/main/app/observer/observer.d.ts +4 -1
- package/dist/lib/main/app/observer/top_observer.d.ts +1 -0
- package/dist/types/main/app/observer/observer.d.ts +4 -1
- package/dist/types/main/app/observer/top_observer.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8,7 +8,10 @@ export default abstract class Observer {
|
|
|
8
8
|
private readonly indexes;
|
|
9
9
|
private readonly attributesMap;
|
|
10
10
|
private readonly textSet;
|
|
11
|
-
|
|
11
|
+
private readonly disableSprites;
|
|
12
|
+
constructor(app: App, isTopContext?: boolean, options?: {
|
|
13
|
+
disableSprites: boolean;
|
|
14
|
+
});
|
|
12
15
|
private clear;
|
|
13
16
|
/**
|
|
14
17
|
* EXPERIMENTAL: Unbinds the removed nodes in case of iframe src change.
|
|
@@ -8,7 +8,10 @@ export default abstract class Observer {
|
|
|
8
8
|
private readonly indexes;
|
|
9
9
|
private readonly attributesMap;
|
|
10
10
|
private readonly textSet;
|
|
11
|
-
|
|
11
|
+
private readonly disableSprites;
|
|
12
|
+
constructor(app: App, isTopContext?: boolean, options?: {
|
|
13
|
+
disableSprites: boolean;
|
|
14
|
+
});
|
|
12
15
|
private clear;
|
|
13
16
|
/**
|
|
14
17
|
* EXPERIMENTAL: Unbinds the removed nodes in case of iframe src change.
|