clarity-visualize 0.8.64 → 0.8.65
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.
|
@@ -150,7 +150,7 @@ var selectorMap = {};
|
|
|
150
150
|
function reset$8() {
|
|
151
151
|
selectorMap = {};
|
|
152
152
|
}
|
|
153
|
-
function get$
|
|
153
|
+
function get$2(input, type) {
|
|
154
154
|
var a = input.attributes;
|
|
155
155
|
var prefix = input.prefix ? input.prefix[type] : null;
|
|
156
156
|
var suffix = type === 0 /* Selector.Alpha */ ? "~" /* Constant.Tilde */ + (input.position - 1) : ":nth-of-type(" + input.position + ")";
|
|
@@ -235,7 +235,7 @@ function filter(value) {
|
|
|
235
235
|
|
|
236
236
|
var selector = /*#__PURE__*/Object.freeze({
|
|
237
237
|
__proto__: null,
|
|
238
|
-
get: get$
|
|
238
|
+
get: get$2,
|
|
239
239
|
reset: reset$8
|
|
240
240
|
});
|
|
241
241
|
|
|
@@ -260,7 +260,7 @@ function getId$1(node, autogen) {
|
|
|
260
260
|
function getNode(id) {
|
|
261
261
|
return nodesMap.has(id) ? nodesMap.get(id) : null;
|
|
262
262
|
}
|
|
263
|
-
function get$
|
|
263
|
+
function get$1(node) {
|
|
264
264
|
var id = getId$1(node);
|
|
265
265
|
return id in values$1 ? values$1[id] : null;
|
|
266
266
|
}
|
|
@@ -268,7 +268,7 @@ function lookup(hash) {
|
|
|
268
268
|
return hash in hashMap ? hashMap[hash] : null;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
-
var helper = { hash: hash, selector: selector, get: get$
|
|
271
|
+
var helper = { hash: hash, selector: selector, get: get$1, getNode: getNode, lookup: lookup };
|
|
272
272
|
|
|
273
273
|
class EnrichHelper {
|
|
274
274
|
constructor() {
|
|
@@ -148,7 +148,7 @@ var selectorMap = {};
|
|
|
148
148
|
function reset$8() {
|
|
149
149
|
selectorMap = {};
|
|
150
150
|
}
|
|
151
|
-
function get$
|
|
151
|
+
function get$2(input, type) {
|
|
152
152
|
var a = input.attributes;
|
|
153
153
|
var prefix = input.prefix ? input.prefix[type] : null;
|
|
154
154
|
var suffix = type === 0 /* Selector.Alpha */ ? "~" /* Constant.Tilde */ + (input.position - 1) : ":nth-of-type(" + input.position + ")";
|
|
@@ -233,7 +233,7 @@ function filter(value) {
|
|
|
233
233
|
|
|
234
234
|
var selector = /*#__PURE__*/Object.freeze({
|
|
235
235
|
__proto__: null,
|
|
236
|
-
get: get$
|
|
236
|
+
get: get$2,
|
|
237
237
|
reset: reset$8
|
|
238
238
|
});
|
|
239
239
|
|
|
@@ -258,7 +258,7 @@ function getId$1(node, autogen) {
|
|
|
258
258
|
function getNode(id) {
|
|
259
259
|
return nodesMap.has(id) ? nodesMap.get(id) : null;
|
|
260
260
|
}
|
|
261
|
-
function get$
|
|
261
|
+
function get$1(node) {
|
|
262
262
|
var id = getId$1(node);
|
|
263
263
|
return id in values$1 ? values$1[id] : null;
|
|
264
264
|
}
|
|
@@ -266,7 +266,7 @@ function lookup(hash) {
|
|
|
266
266
|
return hash in hashMap ? hashMap[hash] : null;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
-
var helper = { hash: hash, selector: selector, get: get$
|
|
269
|
+
var helper = { hash: hash, selector: selector, get: get$1, getNode: getNode, lookup: lookup };
|
|
270
270
|
|
|
271
271
|
class EnrichHelper {
|
|
272
272
|
constructor() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clarity-visualize",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.65",
|
|
4
4
|
"description": "An analytics library that uses web page interactions to generate aggregated insights",
|
|
5
5
|
"author": "Microsoft Corp.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"url": "https://github.com/Microsoft/clarity/issues"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"clarity-decode": "^0.8.
|
|
30
|
+
"clarity-decode": "^0.8.65"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@rollup/plugin-commonjs": "^24.0.0",
|