@gregoriusrippenstein/node-red-contrib-introspection 0.4.2 → 0.4.4

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
@@ -123,3 +123,14 @@ There are [example flows](/examples) contained in the package, examples can also
123
123
  ## Contribution & Ideas
124
124
 
125
125
  Please here at GitHub via issues.
126
+
127
+ ## Artifacts
128
+
129
+ - [NPMjs Package](https://www.npmjs.com/package/@gregoriusrippenstein/node-red-contrib-introspection)
130
+ - [GitHub Repository](https://github.com/gorenje/node-red-contrib-introspection)
131
+ - [Flow that maintains this package](https://flowhub.org/f/d73d76db3df96ba2)
132
+ - [Node-RED node package](https://flows.nodered.org/node/@gregoriusrippenstein/node-red-contrib-introspection)
133
+
134
+
135
+
136
+
@@ -1,7 +1,7 @@
1
1
  <script type="text/javascript">
2
2
  RED.nodes.registerType('GetFlows',{
3
3
  color: '#e5e4ef',
4
- icon: "icons/subflow.svg",
4
+ icon: "introspesubflow.svg",
5
5
  category: 'introspection',
6
6
  defaults: {
7
7
  name: {
@@ -1,7 +1,7 @@
1
1
  <script type="text/javascript">
2
2
  RED.nodes.registerType('SendFlow',{
3
3
  color: '#e5e4ef',
4
- icon: "icons/subflow.svg",
4
+ icon: "introspesubflow.svg",
5
5
  category: 'introspection',
6
6
  defaults: {
7
7
  name: {
@@ -50,7 +50,8 @@
50
50
  },
51
51
  error: (mg) => {
52
52
  doError(mg, nodeid, _msg)
53
- }
53
+ },
54
+ id: data.nodeid
54
55
  };
55
56
 
56
57
  var payload = data.payload;
@@ -62,7 +63,7 @@
62
63
 
63
64
  RED.nodes.registerType('ClientCode',{
64
65
  color: '#e5e4ef',
65
- icon: "icons/subflow.svg",
66
+ icon: "introspesubflow.svg",
66
67
  category: 'introspection',
67
68
  paletteLabel: "ClientCode",
68
69
  defaults: {
@@ -167,7 +168,6 @@
167
168
  <label for="node-input-clientcode">
168
169
  <i class="fa fa-file-code-o"></i> Client Code
169
170
  </label>
170
- <input type="hidden" id="node-input-clientcode" autofocus="autofocus">
171
171
 
172
172
  <div style="position: absolute; right:0;display:inline-block; text-align: right; font-size: 0.8em;">
173
173
  Syntax:
@@ -196,7 +196,8 @@
196
196
  class="node-text-editor"
197
197
  id="node-input-clientcode-editor" ></div>
198
198
  </div>
199
- <input type="hidden" id="node-input-clientcode">
199
+
200
+ <input type="hidden" id="node-input-clientcode" autofocus="autofocus">
200
201
  </script>
201
202
 
202
203
  <script type="text/html" data-help-name="ClientCode">
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@gregoriusrippenstein/node-red-contrib-introspection",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "dependencies": {
5
5
  "got": "latest"
6
6
  },
7
7
  "keywords": [
8
- "node-red"
8
+ "node-red", "introspection", "selfreflection"
9
9
  ],
10
10
  "homepage": "https://github.com/gorenje/node-red-contrib-introspection#README.md",
11
11
  "license": "SEE LICENSE IN https://github.com/gorenje/node-red-contrib-introspection/blob/main/LICENSE",