@gemx-dev/heatmap-react 3.5.65 → 3.5.67
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/esm/hooks/view-context/index.d.ts +1 -0
- package/dist/esm/hooks/view-context/index.d.ts.map +1 -1
- package/dist/esm/index.js +105 -97
- package/dist/esm/index.mjs +105 -97
- package/dist/esm/types/heatmap.d.ts +17 -9
- package/dist/esm/types/heatmap.d.ts.map +1 -1
- package/dist/umd/hooks/view-context/index.d.ts +1 -0
- package/dist/umd/hooks/view-context/index.d.ts.map +1 -1
- package/dist/umd/index.js +2 -2
- package/dist/umd/types/heatmap.d.ts +17 -9
- package/dist/umd/types/heatmap.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
export declare enum IDeviceType {
|
|
2
|
-
Desktop = "
|
|
3
|
-
Mobile = "
|
|
4
|
-
Tablet = "
|
|
2
|
+
Desktop = "DESKTOP",
|
|
3
|
+
Mobile = "MOBILE",
|
|
4
|
+
Tablet = "TABLET"
|
|
5
5
|
}
|
|
6
6
|
export declare enum IHeatmapType {
|
|
7
7
|
Click = "click",
|
|
8
8
|
Scroll = "scroll"
|
|
9
9
|
}
|
|
10
10
|
export declare enum IClickType {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
/** Return all clicks (default) */
|
|
12
|
+
All = "ALL",
|
|
13
|
+
/** Rapid clicks in a small area, indicating user frustration */
|
|
14
|
+
Rage = "RAGE",
|
|
15
|
+
/** Clicks with no effect (no navigation, no state change) */
|
|
16
|
+
Dead = "DEAD",
|
|
17
|
+
/** Clicks followed by JavaScript errors */
|
|
18
|
+
Error = "ERROR",
|
|
19
|
+
/** The first click of the session */
|
|
20
|
+
First = "FIRST",
|
|
21
|
+
/** The last click of the session */
|
|
22
|
+
Last = "LAST",
|
|
23
|
+
/** Normal click with no special behavior (fallback type) */
|
|
24
|
+
Standard = "STANDARD"
|
|
17
25
|
}
|
|
18
26
|
export declare enum IClickRankType {
|
|
19
27
|
MostClicks = "most-clicks",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"heatmap.d.ts","sourceRoot":"","sources":["../../src/types/heatmap.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IACrB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;AAED,oBAAY,YAAY;IACtB,KAAK,UAAU;IACf,MAAM,WAAW;CAClB;AAED,oBAAY,UAAU;IACpB,
|
|
1
|
+
{"version":3,"file":"heatmap.d.ts","sourceRoot":"","sources":["../../src/types/heatmap.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IACrB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;AAED,oBAAY,YAAY;IACtB,KAAK,UAAU;IACf,MAAM,WAAW;CAClB;AAED,oBAAY,UAAU;IACpB,kCAAkC;IAClC,GAAG,QAAQ;IACX,gEAAgE;IAChE,IAAI,SAAS;IACb,6DAA6D;IAC7D,IAAI,SAAS;IACb,2CAA2C;IAC3C,KAAK,UAAU;IACf,qCAAqC;IACrC,KAAK,UAAU;IACf,oCAAoC;IACpC,IAAI,SAAS;IACb,4DAA4D;IAC5D,QAAQ,aAAa;CACtB;AAED,oBAAY,cAAc;IACxB,UAAU,gBAAgB;IAC1B,OAAO,YAAY;IACnB,eAAe,qBAAqB;IACpC,cAAc,oBAAoB;IAClC,eAAe,sBAAsB;IACrC,iBAAiB,wBAAwB;CAC1C;AAED,oBAAY,UAAU;IACpB,OAAO,YAAY;IACnB,IAAI,eAAe;CACpB;AAED,oBAAY,WAAW;IACrB,KAAK,iBAAiB;IACtB,SAAS,qBAAqB;IAC9B,OAAO,mBAAmB;CAC3B;AAED,MAAM,WAAW,cAAc;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,YAAY,CAAC;CAC5B"}
|