@highlight-run/rrweb 1.1.13 → 1.1.14
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/utils.d.ts +1 -0
- package/package.json +1 -1
package/dist/utils.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare function patch(source: {
|
|
|
10
10
|
}, name: string, replacement: (...args: any[]) => any): () => void;
|
|
11
11
|
export declare function getWindowHeight(): number;
|
|
12
12
|
export declare function getWindowWidth(): number;
|
|
13
|
+
export declare const isCanvasNode: (node: Node | null) => boolean;
|
|
13
14
|
export declare function isBlocked(node: Node | null, blockClass: blockClass): boolean;
|
|
14
15
|
export declare function isIgnored(n: Node | INode): boolean;
|
|
15
16
|
export declare function isAncestorRemoved(target: INode, mirror: Mirror): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@highlight-run/rrweb",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"description": "record and replay the web",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "npm run bundle:browser && cross-env TS_NODE_CACHE=false TS_NODE_FILES=true mocha -r ts-node/register -r ignore-styles -r jsdom-global/register test/**.test.ts",
|