clarity-visualize 0.8.42 → 0.8.43
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/README.md +26 -26
- package/build/clarity.visualize.js +2023 -1988
- package/build/clarity.visualize.min.js +1 -1
- package/build/clarity.visualize.module.js +2023 -1988
- package/package.json +62 -62
- package/rollup.config.ts +79 -79
- package/src/clarity.ts +3 -3
- package/src/data.ts +103 -103
- package/src/enrich.ts +79 -79
- package/src/global.ts +9 -9
- package/src/heatmap.ts +300 -300
- package/src/index.ts +2 -2
- package/src/interaction.ts +510 -510
- package/src/layout.ts +727 -727
- package/src/styles/blobUnavailable/chineseSimplified.svg +5 -5
- package/src/styles/blobUnavailable/chineseTraditional.svg +5 -5
- package/src/styles/blobUnavailable/dutch.svg +5 -5
- package/src/styles/blobUnavailable/english.svg +5 -5
- package/src/styles/blobUnavailable/french.svg +5 -5
- package/src/styles/blobUnavailable/german.svg +5 -5
- package/src/styles/blobUnavailable/iconOnly.svg +4 -4
- package/src/styles/blobUnavailable/italian.svg +5 -5
- package/src/styles/blobUnavailable/japanese.svg +5 -5
- package/src/styles/blobUnavailable/korean.svg +5 -5
- package/src/styles/blobUnavailable/portuguese.svg +5 -5
- package/src/styles/blobUnavailable/russian.svg +5 -5
- package/src/styles/blobUnavailable/spanish.svg +5 -5
- package/src/styles/blobUnavailable/turkish.svg +5 -5
- package/src/styles/iframeUnavailable/chineseSimplified.svg +5 -5
- package/src/styles/iframeUnavailable/chineseTraditional.svg +5 -5
- package/src/styles/iframeUnavailable/dutch.svg +5 -5
- package/src/styles/iframeUnavailable/english.svg +5 -5
- package/src/styles/iframeUnavailable/french.svg +5 -5
- package/src/styles/iframeUnavailable/german.svg +5 -5
- package/src/styles/iframeUnavailable/iconOnly.svg +4 -4
- package/src/styles/iframeUnavailable/italian.svg +5 -5
- package/src/styles/iframeUnavailable/japanese.svg +5 -5
- package/src/styles/iframeUnavailable/korean.svg +5 -5
- package/src/styles/iframeUnavailable/portuguese.svg +5 -5
- package/src/styles/iframeUnavailable/russian.svg +5 -5
- package/src/styles/iframeUnavailable/spanish.svg +5 -5
- package/src/styles/iframeUnavailable/turkish.svg +5 -5
- package/src/styles/imageMasked/chineseSimplified.svg +5 -5
- package/src/styles/imageMasked/chineseTraditional.svg +5 -5
- package/src/styles/imageMasked/dutch.svg +5 -5
- package/src/styles/imageMasked/english.svg +5 -5
- package/src/styles/imageMasked/french.svg +5 -5
- package/src/styles/imageMasked/german.svg +5 -5
- package/src/styles/imageMasked/iconOnly.svg +4 -4
- package/src/styles/imageMasked/italian.svg +5 -5
- package/src/styles/imageMasked/japanese.svg +5 -5
- package/src/styles/imageMasked/korean.svg +5 -5
- package/src/styles/imageMasked/portuguese.svg +5 -5
- package/src/styles/imageMasked/russian.svg +5 -5
- package/src/styles/imageMasked/spanish.svg +5 -5
- package/src/styles/imageMasked/turkish.svg +5 -5
- package/src/styles/pointer/click.css +30 -30
- package/src/styles/pointer/pointerIcon.svg +18 -18
- package/src/styles/shared.css +5 -5
- package/src/visualizer.ts +264 -264
- package/tsconfig.json +21 -21
- package/tslint.json +32 -32
- package/types/index.d.ts +10 -10
- package/types/string-import.d.ts +8 -8
- 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!
|