clarity-js 0.6.41 → 0.6.42
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/build/clarity.js +498 -499
- package/build/clarity.min.js +1 -1
- package/build/clarity.module.js +498 -499
- package/package.json +1 -1
- package/src/core/version.ts +1 -1
- package/src/layout/dom.ts +1 -2
package/package.json
CHANGED
package/src/core/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
let version = "0.6.
|
|
1
|
+
let version = "0.6.42";
|
|
2
2
|
export default version;
|
package/src/layout/dom.ts
CHANGED
|
@@ -92,8 +92,7 @@ export function add(node: Node, parent: Node, data: NodeInfo, source: Source): v
|
|
|
92
92
|
let regionId = region.exists(node) ? id : null;
|
|
93
93
|
let fragmentId = null;
|
|
94
94
|
let fraudId = fraudMap.has(node) ? fraudMap.get(node) : null;
|
|
95
|
-
let privacyId = config.content ? Privacy.Sensitive : Privacy.
|
|
96
|
-
|
|
95
|
+
let privacyId = config.content ? Privacy.Sensitive : Privacy.TextImage
|
|
97
96
|
if (parentId >= 0 && values[parentId]) {
|
|
98
97
|
parentValue = values[parentId];
|
|
99
98
|
parentValue.children.push(id);
|