@gemx-dev/clarity-visualize 0.8.53 → 0.8.54
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.
|
@@ -415,7 +415,7 @@ function createParentWindowCanvas(iframeDoc) {
|
|
|
415
415
|
canvas_1.id = "clarity-heatmap-canvas" /* Constant.HeatmapCanvas */;
|
|
416
416
|
canvas_1.width = 0;
|
|
417
417
|
canvas_1.height = 0;
|
|
418
|
-
|
|
418
|
+
// canvas.style.position = Constant.Absolute;
|
|
419
419
|
canvas_1.style.zIndex = "".concat(2147483647 /* Setting.ZIndex */);
|
|
420
420
|
canvas_1.style.pointerEvents = 'none'; // Allow clicks to pass through
|
|
421
421
|
iframeParent.appendChild(canvas_1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gemx-dev/clarity-visualize",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.54",
|
|
4
4
|
"description": "Clarity visualize",
|
|
5
5
|
"author": "Microsoft Corp.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"unpkg": "build/clarity.visualize.min.js",
|
|
10
10
|
"types": "types/index.d.ts",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@gemx-dev/clarity-decode": "^0.8.
|
|
12
|
+
"@gemx-dev/clarity-decode": "^0.8.54"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@rollup/plugin-commonjs": "^24.0.0",
|
|
@@ -53,7 +53,7 @@ export function createParentWindowCanvas(
|
|
|
53
53
|
canvas.id = Constant.HeatmapCanvas;
|
|
54
54
|
canvas.width = 0;
|
|
55
55
|
canvas.height = 0;
|
|
56
|
-
canvas.style.position = Constant.Absolute;
|
|
56
|
+
// canvas.style.position = Constant.Absolute;
|
|
57
57
|
canvas.style.zIndex = `${Setting.ZIndex}`;
|
|
58
58
|
canvas.style.pointerEvents = 'none'; // Allow clicks to pass through
|
|
59
59
|
iframeParent.appendChild(canvas);
|