clarity-visualize 0.8.10 → 0.8.12
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.
|
@@ -176,7 +176,7 @@ function hash (input, precision) {
|
|
|
176
176
|
|
|
177
177
|
var excludeClassNames = "load,active,fixed,visible,focus,show,collaps,animat" /* Constant.ExcludeClassNames */.split("," /* Constant.Comma */);
|
|
178
178
|
var selectorMap = {};
|
|
179
|
-
function reset$
|
|
179
|
+
function reset$7() {
|
|
180
180
|
selectorMap = {};
|
|
181
181
|
}
|
|
182
182
|
function get$1(input, type) {
|
|
@@ -272,7 +272,7 @@ function filter(value) {
|
|
|
272
272
|
var selector = /*#__PURE__*/Object.freeze({
|
|
273
273
|
__proto__: null,
|
|
274
274
|
get: get$1,
|
|
275
|
-
reset: reset$
|
|
275
|
+
reset: reset$7
|
|
276
276
|
});
|
|
277
277
|
|
|
278
278
|
var index = 1;
|
|
@@ -174,7 +174,7 @@ function hash (input, precision) {
|
|
|
174
174
|
|
|
175
175
|
var excludeClassNames = "load,active,fixed,visible,focus,show,collaps,animat" /* Constant.ExcludeClassNames */.split("," /* Constant.Comma */);
|
|
176
176
|
var selectorMap = {};
|
|
177
|
-
function reset$
|
|
177
|
+
function reset$7() {
|
|
178
178
|
selectorMap = {};
|
|
179
179
|
}
|
|
180
180
|
function get$1(input, type) {
|
|
@@ -270,7 +270,7 @@ function filter(value) {
|
|
|
270
270
|
var selector = /*#__PURE__*/Object.freeze({
|
|
271
271
|
__proto__: null,
|
|
272
272
|
get: get$1,
|
|
273
|
-
reset: reset$
|
|
273
|
+
reset: reset$7
|
|
274
274
|
});
|
|
275
275
|
|
|
276
276
|
var index = 1;
|
package/package.json
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "clarity-visualize",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"description": "An analytics library that uses web page interactions to generate aggregated insights",
|
|
5
|
-
"author": "Microsoft Corp.",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"main": "build/clarity.visualize.js",
|
|
8
|
-
"module": "build/clarity.visualize.module.js",
|
|
9
|
-
"unpkg": "build/clarity.visualize.min.js",
|
|
10
|
-
"types": "types/index.d.ts",
|
|
11
|
-
"keywords": [
|
|
12
|
-
"clarity",
|
|
13
|
-
"Microsoft",
|
|
14
|
-
"interactions",
|
|
15
|
-
"cursor",
|
|
16
|
-
"pointer",
|
|
17
|
-
"instrumentation",
|
|
18
|
-
"analytics",
|
|
19
|
-
"visualization"
|
|
20
|
-
],
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "https://github.com/microsoft/clarity.git",
|
|
24
|
-
"directory": "packages/clarity-visualize"
|
|
25
|
-
},
|
|
26
|
-
"bugs": {
|
|
27
|
-
"url": "https://github.com/Microsoft/clarity/issues"
|
|
28
|
-
},
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"clarity-decode": "^0.8.
|
|
31
|
-
},
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"@rollup/plugin-commonjs": "^24.0.0",
|
|
34
|
-
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
35
|
-
"@rollup/plugin-terser": "^0.4.0",
|
|
36
|
-
"@rollup/plugin-typescript": "^11.0.0",
|
|
37
|
-
"rollup-plugin-string-import": "^1.2.5",
|
|
38
|
-
"del-cli": "^5.0.0",
|
|
39
|
-
"husky": "^8.0.0",
|
|
40
|
-
"lint-staged": "^13.1.0",
|
|
41
|
-
"rollup": "^3.0.0",
|
|
42
|
-
"ts-node": "^10.1.0",
|
|
43
|
-
"tslint": "^6.1.3",
|
|
44
|
-
"typescript": "^4.3.5"
|
|
45
|
-
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"build": "yarn build:clean && yarn build:main",
|
|
48
|
-
"build:main": "rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
49
|
-
"build:clean": "del-cli build/*",
|
|
50
|
-
"tslint": "tslint --project ./",
|
|
51
|
-
"tslint:fix": "tslint --fix --project ./ --force"
|
|
52
|
-
},
|
|
53
|
-
"husky": {
|
|
54
|
-
"hooks": {
|
|
55
|
-
"pre-commit": "lint-staged"
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
"lint-staged": {
|
|
59
|
-
"*.ts": [
|
|
60
|
-
"tslint --format codeFrame"
|
|
61
|
-
]
|
|
62
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "clarity-visualize",
|
|
3
|
+
"version": "0.8.12",
|
|
4
|
+
"description": "An analytics library that uses web page interactions to generate aggregated insights",
|
|
5
|
+
"author": "Microsoft Corp.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "build/clarity.visualize.js",
|
|
8
|
+
"module": "build/clarity.visualize.module.js",
|
|
9
|
+
"unpkg": "build/clarity.visualize.min.js",
|
|
10
|
+
"types": "types/index.d.ts",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"clarity",
|
|
13
|
+
"Microsoft",
|
|
14
|
+
"interactions",
|
|
15
|
+
"cursor",
|
|
16
|
+
"pointer",
|
|
17
|
+
"instrumentation",
|
|
18
|
+
"analytics",
|
|
19
|
+
"visualization"
|
|
20
|
+
],
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/microsoft/clarity.git",
|
|
24
|
+
"directory": "packages/clarity-visualize"
|
|
25
|
+
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/Microsoft/clarity/issues"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"clarity-decode": "^0.8.12"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@rollup/plugin-commonjs": "^24.0.0",
|
|
34
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
35
|
+
"@rollup/plugin-terser": "^0.4.0",
|
|
36
|
+
"@rollup/plugin-typescript": "^11.0.0",
|
|
37
|
+
"rollup-plugin-string-import": "^1.2.5",
|
|
38
|
+
"del-cli": "^5.0.0",
|
|
39
|
+
"husky": "^8.0.0",
|
|
40
|
+
"lint-staged": "^13.1.0",
|
|
41
|
+
"rollup": "^3.0.0",
|
|
42
|
+
"ts-node": "^10.1.0",
|
|
43
|
+
"tslint": "^6.1.3",
|
|
44
|
+
"typescript": "^4.3.5"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "yarn build:clean && yarn build:main",
|
|
48
|
+
"build:main": "rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
49
|
+
"build:clean": "del-cli build/*",
|
|
50
|
+
"tslint": "tslint --project ./",
|
|
51
|
+
"tslint:fix": "tslint --fix --project ./ --force"
|
|
52
|
+
},
|
|
53
|
+
"husky": {
|
|
54
|
+
"hooks": {
|
|
55
|
+
"pre-commit": "lint-staged"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"lint-staged": {
|
|
59
|
+
"*.ts": [
|
|
60
|
+
"tslint --format codeFrame"
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
63
|
}
|