@gregoriusrippenstein/node-red-contrib-introspection 0.6.1 → 0.6.2

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/README.md CHANGED
@@ -49,6 +49,18 @@ Disappointments:
49
49
 
50
50
  Clicking on a node will highlight that node in the workspace. The nodes shown are across all flows and tabs.
51
51
 
52
+ ### Link Calls & Undocumented
53
+
54
+ ![img](https://cdn.openmindmap.org/content/1706777864298_Screen_Shot_2024-02-01_at_09.56.51.png)
55
+
56
+ The Link Calls button will highlight all *link call* nodes with a dot to indicate whether the link call is valid, i.e., there is an existing link-in node to which it links:
57
+
58
+ ![img](https://cdn.openmindmap.org/content/1706778030283_Screen_Shot_2024-02-01_at_10.00.27.png)
59
+
60
+ Clicking on the green dot will take the user to the corresponding link-in node which will then also be highlighted by a green dot. That dot brings the user back to the original link-call node.
61
+
62
+ The Undocumented button will highlight all nodes that have documentation and list all those that don't.
63
+
52
64
  ### Obfuscate
53
65
 
54
66
  ![img](https://cdn.openmindmap.org/content/1706184273430_Screen_Shot_2024-01-25_at_13.04.17.png)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gregoriusrippenstein/node-red-contrib-introspection",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "dependencies": {
5
5
  "got": "^13",
6
6
  "uglify-js": "^3.17.4"
@@ -115,6 +115,8 @@
115
115
  setupTreelistInfoness();
116
116
  })
117
117
 
118
+ RED.actions.add( "introspection:show-link-call-links", highlightAllLinkCalls)
119
+
118
120
  $('#node-input-linkcalls-find-btn').on('click', (e) => {
119
121
  if ( e ) { e.preventDefault() }
120
122
  highlightAllLinkCalls()