sefiutils 1.0.12 → 1.0.13

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.
@@ -60,9 +60,9 @@ function createComponentNode(fiber/* : Fiber */, parent/* : ComponentNode|undefi
60
60
 
61
61
  debugNode.name = debugType.displayName;
62
62
  if (typeof debugType.render === 'function') {
63
- debugNode.type = "function";
63
+ debugNode.kind = "function";
64
64
  } else {
65
- debugNode.type = "null";
65
+ debugNode.kind = "null";
66
66
  }
67
67
  node.parent = debugNode;
68
68
  if (parent) {
@@ -179,13 +179,4 @@ function uniDirFunctionComponentsTree() {
179
179
  retainFunctions(tree);
180
180
  removeParentReferences(tree);
181
181
  return tree;
182
- }
183
-
184
- function uniDirComponentsTree() {
185
- const tree = getComponentTree(document);
186
- if (!tree) {
187
- return;
188
- }
189
- removeParentReferences(tree);
190
- return tree;
191
182
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sefiutils",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "Utilities (and Jest tests) for Selenium Webdriver Tests and some React tools as well",
5
5
  "author": "Jens von Pilgrim <jens.vonpilgrim@bht-berlin.de>",
6
6
  "license": "EPL-2.0",