@gemx-dev/clarity-visualize 0.8.53 → 0.8.55

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.
@@ -416,7 +416,7 @@ function createParentWindowCanvas(iframeDoc) {
416
416
  canvas_1.width = 0;
417
417
  canvas_1.height = 0;
418
418
  canvas_1.style.position = "absolute" /* Constant.Absolute */;
419
- canvas_1.style.zIndex = "".concat(2147483647 /* Setting.ZIndex */);
419
+ // canvas.style.zIndex = `${Setting.ZIndex}`;
420
420
  canvas_1.style.pointerEvents = 'none'; // Allow clicks to pass through
421
421
  iframeParent.appendChild(canvas_1);
422
422
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gemx-dev/clarity-visualize",
3
- "version": "0.8.53",
3
+ "version": "0.8.55",
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.53"
12
+ "@gemx-dev/clarity-decode": "^0.8.55"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@rollup/plugin-commonjs": "^24.0.0",
@@ -54,7 +54,7 @@ export function createParentWindowCanvas(
54
54
  canvas.width = 0;
55
55
  canvas.height = 0;
56
56
  canvas.style.position = Constant.Absolute;
57
- canvas.style.zIndex = `${Setting.ZIndex}`;
57
+ // canvas.style.zIndex = `${Setting.ZIndex}`;
58
58
  canvas.style.pointerEvents = 'none'; // Allow clicks to pass through
59
59
  iframeParent.appendChild(canvas);
60
60
  }