clarity-visualize 0.8.42 → 0.8.44

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.
Files changed (65) hide show
  1. package/README.md +26 -26
  2. package/build/clarity.visualize.js +2030 -1988
  3. package/build/clarity.visualize.min.js +1 -1
  4. package/build/clarity.visualize.module.js +2030 -1988
  5. package/package.json +62 -62
  6. package/rollup.config.ts +79 -79
  7. package/src/clarity.ts +3 -3
  8. package/src/data.ts +103 -103
  9. package/src/enrich.ts +79 -79
  10. package/src/global.ts +9 -9
  11. package/src/heatmap.ts +300 -300
  12. package/src/index.ts +2 -2
  13. package/src/interaction.ts +510 -510
  14. package/src/layout.ts +734 -727
  15. package/src/styles/blobUnavailable/chineseSimplified.svg +5 -5
  16. package/src/styles/blobUnavailable/chineseTraditional.svg +5 -5
  17. package/src/styles/blobUnavailable/dutch.svg +5 -5
  18. package/src/styles/blobUnavailable/english.svg +5 -5
  19. package/src/styles/blobUnavailable/french.svg +5 -5
  20. package/src/styles/blobUnavailable/german.svg +5 -5
  21. package/src/styles/blobUnavailable/iconOnly.svg +4 -4
  22. package/src/styles/blobUnavailable/italian.svg +5 -5
  23. package/src/styles/blobUnavailable/japanese.svg +5 -5
  24. package/src/styles/blobUnavailable/korean.svg +5 -5
  25. package/src/styles/blobUnavailable/portuguese.svg +5 -5
  26. package/src/styles/blobUnavailable/russian.svg +5 -5
  27. package/src/styles/blobUnavailable/spanish.svg +5 -5
  28. package/src/styles/blobUnavailable/turkish.svg +5 -5
  29. package/src/styles/iframeUnavailable/chineseSimplified.svg +5 -5
  30. package/src/styles/iframeUnavailable/chineseTraditional.svg +5 -5
  31. package/src/styles/iframeUnavailable/dutch.svg +5 -5
  32. package/src/styles/iframeUnavailable/english.svg +5 -5
  33. package/src/styles/iframeUnavailable/french.svg +5 -5
  34. package/src/styles/iframeUnavailable/german.svg +5 -5
  35. package/src/styles/iframeUnavailable/iconOnly.svg +4 -4
  36. package/src/styles/iframeUnavailable/italian.svg +5 -5
  37. package/src/styles/iframeUnavailable/japanese.svg +5 -5
  38. package/src/styles/iframeUnavailable/korean.svg +5 -5
  39. package/src/styles/iframeUnavailable/portuguese.svg +5 -5
  40. package/src/styles/iframeUnavailable/russian.svg +5 -5
  41. package/src/styles/iframeUnavailable/spanish.svg +5 -5
  42. package/src/styles/iframeUnavailable/turkish.svg +5 -5
  43. package/src/styles/imageMasked/chineseSimplified.svg +5 -5
  44. package/src/styles/imageMasked/chineseTraditional.svg +5 -5
  45. package/src/styles/imageMasked/dutch.svg +5 -5
  46. package/src/styles/imageMasked/english.svg +5 -5
  47. package/src/styles/imageMasked/french.svg +5 -5
  48. package/src/styles/imageMasked/german.svg +5 -5
  49. package/src/styles/imageMasked/iconOnly.svg +4 -4
  50. package/src/styles/imageMasked/italian.svg +5 -5
  51. package/src/styles/imageMasked/japanese.svg +5 -5
  52. package/src/styles/imageMasked/korean.svg +5 -5
  53. package/src/styles/imageMasked/portuguese.svg +5 -5
  54. package/src/styles/imageMasked/russian.svg +5 -5
  55. package/src/styles/imageMasked/spanish.svg +5 -5
  56. package/src/styles/imageMasked/turkish.svg +5 -5
  57. package/src/styles/pointer/click.css +30 -30
  58. package/src/styles/pointer/pointerIcon.svg +18 -18
  59. package/src/styles/shared.css +5 -5
  60. package/src/visualizer.ts +264 -264
  61. package/tsconfig.json +21 -21
  62. package/tslint.json +32 -32
  63. package/types/index.d.ts +10 -10
  64. package/types/string-import.d.ts +8 -8
  65. package/types/visualize.d.ts +236 -236
package/README.md CHANGED
@@ -1,26 +1,26 @@
1
- # Clarity
2
- Clarity is an open-source behavioral analytics library written in typescript, with two key goals: privacy & performance.
3
-
4
- It helps you understand how users view and use your website across all modern devices and browsers. Understanding how users navigate, interact and browse your website can provide new insights about your users. Empathizing with your users and seeing where features fail or succeed can help improve your product, grow revenue and improve user retention.
5
-
6
- This package takes the decoded data from [clarity-decode](https://github.com/microsoft/clarity/tree/master/packages/clarity-decode) and turns it into pixel-perfect session replay, exactly how the user saw it.
7
-
8
- We encourage the community to join us in building the best behavioral analytics library, that puts privacy first and prioritizes performance.
9
-
10
- ## Examples
11
- Here are some example sessions on popular websites visualized to demonstrate the telemetry captured:
12
- 1. CNN (Web)
13
- </br><a href="https://thumbs.gfycat.com/AggressiveLankyAbyssiniangroundhornbill-size_restricted.gif"><img src="https://thumbs.gfycat.com/AggressiveLankyAbyssiniangroundhornbill-size_restricted.gif" title="Clarity - CNN Example"/></a>
14
-
15
- 2. Cook with Manali (Mobile)
16
- </br><a href="https://thumbs.gfycat.com/CoolDependableAdamsstaghornedbeetle-size_restricted.gif"><img src="https://thumbs.gfycat.com/CoolDependableAdamsstaghornedbeetle-size_restricted.gif" title="Clarity - Cook With Manali Example"/></a>
17
-
18
- ## Privacy Notice
19
- Clarity handles sensitive data with care. By default sensitive content on the page is masked before uploading to the server.
20
-
21
- ## Improving Clarity
22
- If you haven't already done so, start contributing by following instructions **[here](https://github.com/microsoft/clarity/blob/master/CONTRIBUTING.md)**.
23
-
24
- This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
25
-
26
- Happy coding!
1
+ # Clarity
2
+ Clarity is an open-source behavioral analytics library written in typescript, with two key goals: privacy & performance.
3
+
4
+ It helps you understand how users view and use your website across all modern devices and browsers. Understanding how users navigate, interact and browse your website can provide new insights about your users. Empathizing with your users and seeing where features fail or succeed can help improve your product, grow revenue and improve user retention.
5
+
6
+ This package takes the decoded data from [clarity-decode](https://github.com/microsoft/clarity/tree/master/packages/clarity-decode) and turns it into pixel-perfect session replay, exactly how the user saw it.
7
+
8
+ We encourage the community to join us in building the best behavioral analytics library, that puts privacy first and prioritizes performance.
9
+
10
+ ## Examples
11
+ Here are some example sessions on popular websites visualized to demonstrate the telemetry captured:
12
+ 1. CNN (Web)
13
+ </br><a href="https://thumbs.gfycat.com/AggressiveLankyAbyssiniangroundhornbill-size_restricted.gif"><img src="https://thumbs.gfycat.com/AggressiveLankyAbyssiniangroundhornbill-size_restricted.gif" title="Clarity - CNN Example"/></a>
14
+
15
+ 2. Cook with Manali (Mobile)
16
+ </br><a href="https://thumbs.gfycat.com/CoolDependableAdamsstaghornedbeetle-size_restricted.gif"><img src="https://thumbs.gfycat.com/CoolDependableAdamsstaghornedbeetle-size_restricted.gif" title="Clarity - Cook With Manali Example"/></a>
17
+
18
+ ## Privacy Notice
19
+ Clarity handles sensitive data with care. By default sensitive content on the page is masked before uploading to the server.
20
+
21
+ ## Improving Clarity
22
+ If you haven't already done so, start contributing by following instructions **[here](https://github.com/microsoft/clarity/blob/master/CONTRIBUTING.md)**.
23
+
24
+ This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
25
+
26
+ Happy coding!